* Pull from one branch to another?
@ 2005-09-29 6:07 Jeff Garzik
2005-09-29 6:35 ` Junio C Hamano
` (2 more replies)
0 siblings, 3 replies; 7+ messages in thread
From: Jeff Garzik @ 2005-09-29 6:07 UTC (permalink / raw)
To: Git Mailing List
[-- Attachment #1: Type: text/plain, Size: 827 bytes --]
I currently use the attached script to merge the contents of one branch
into another branch, in my kernel trees:
$ cd /repo/netdev-2.6
$ git checkout -f sky2
$ ... merge patches ...
$ git checkout -f upstream
$ ... merge more patches ...
$ git checkout -f ALL
$ git-pull-branch upstream
$ git-pull-branch sky2
End result: 'ALL' branch contains everything in 'sky2' and 'upstream'
branches. I use the above for creating an all-inclusive branch that
users can test, and that Andrew Morton can pull into his -mm kernel tree.
Right now, my git-pull-branch script (attached) simply calls
git-resolve-script, which nicely skips the fetch step and any
complications related to that.
My question: is this the best/right way to pull one branch into
another? It's been working for me, for months, but...
Jeff
[-- Attachment #2: git-pull-branch --]
[-- Type: text/plain, Size: 59 bytes --]
#!/bin/sh
git-resolve-script HEAD $1 "`pwd` branch '$1'"
^ permalink raw reply [flat|nested] 7+ messages in thread* Re: Pull from one branch to another? 2005-09-29 6:07 Pull from one branch to another? Jeff Garzik @ 2005-09-29 6:35 ` Junio C Hamano 2005-09-29 6:54 ` Use of the -f flag on checkout Alan Chandler 2005-09-29 7:06 ` Pull from one branch to another? Junio C Hamano 2005-09-29 17:52 ` Tony Luck 2 siblings, 1 reply; 7+ messages in thread From: Junio C Hamano @ 2005-09-29 6:35 UTC (permalink / raw) To: Jeff Garzik; +Cc: git Jeff Garzik <jgarzik@pobox.com> writes: > My question: is this the best/right way to pull one branch into > another? It's been working for me, for months, but... Yes, that is how 'resolve' is designed to work. You could instead use standard 'git pull' from the local repository. Here is what I usually do in git.git repository: $ git checkout foo $ ... work in foo "topic" branch $ git checkout bar $ ... work in bar "topic" branch $ git checkout pu $ git pull . foo bar End result: foo and bar branches are pulled from the local repository and merged into pu branch, as an Octopus. Of course, I could instead: $ git checkout pu $ git pull . foo $ git pull . bar to pull 'foo' and then 'bar' in sequence, which is easier if these topic branches touch overlapping area, because Octopus does not allow manual resolving. On the other hand if I know foo and bar are independent work, there is no point recording the order of merges (merging foo first and then bar does not have any significance) and I tend to let Octopus to happen. ^ permalink raw reply [flat|nested] 7+ messages in thread
* Use of the -f flag on checkout 2005-09-29 6:35 ` Junio C Hamano @ 2005-09-29 6:54 ` Alan Chandler 2005-09-29 7:09 ` Matthias Urlichs 2005-09-29 9:02 ` Junio C Hamano 0 siblings, 2 replies; 7+ messages in thread From: Alan Chandler @ 2005-09-29 6:54 UTC (permalink / raw) To: git On Thursday 29 Sep 2005 07:35, Junio C Hamano wrote: > Jeff Garzik <jgarzik@pobox.com> writes: > > My question: is this the best/right way to pull one branch into > > another? It's been working for me, for months, but... > > Yes, that is how 'resolve' is designed to work. > > You could instead use standard 'git pull' from the local > repository. Here is what I usually do in git.git repository: > > $ git checkout foo > $ ... work in foo "topic" branch > $ git checkout bar > $ ... work in bar "topic" branch > $ git checkout pu I notice that Jeff is using the -f flag on checkout whereas you don't. What is the risk in not using it (ie what are the cases when you should use it)? -- Alan Chandler http://www.chandlerfamily.org.uk ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Use of the -f flag on checkout 2005-09-29 6:54 ` Use of the -f flag on checkout Alan Chandler @ 2005-09-29 7:09 ` Matthias Urlichs 2005-09-29 9:02 ` Junio C Hamano 1 sibling, 0 replies; 7+ messages in thread From: Matthias Urlichs @ 2005-09-29 7:09 UTC (permalink / raw) To: git Hi, Alan Chandler wrote: > What is the risk in not using it (ie what are the cases when you should > use it)? The risk of using it is that you kill your local changes, even if you want to keep them. They're *gone*. The risk of not using it is that you check local changes into a branch where they don't belong. => IMHO, "checkout -f" should be avoided in scripts. If you want to be safe, check that you don't have local changes or additional files *before* doing the work. -- Matthias Urlichs | {M:U} IT Design @ m-u-it.de | smurf@smurf.noris.de Disclaimer: The quote was selected randomly. Really. | http://smurf.noris.de - - To me, home is not rooms and places. It is the people I want to be with. -- FJ van Wingerde ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Use of the -f flag on checkout 2005-09-29 6:54 ` Use of the -f flag on checkout Alan Chandler 2005-09-29 7:09 ` Matthias Urlichs @ 2005-09-29 9:02 ` Junio C Hamano 1 sibling, 0 replies; 7+ messages in thread From: Junio C Hamano @ 2005-09-29 9:02 UTC (permalink / raw) To: Alan Chandler; +Cc: git Alan Chandler <alan@chandlerfamily.org.uk> writes: > I notice that Jeff is using the -f flag on checkout whereas you don't. > > What is the risk in not using it (ie what are the cases when you should use > it)? 'git checkout' without '-f' means "I know my index file is derived from my current HEAD commit. I may have recorded changes since the HEAD commit in index and also in the working tree. I now want to switch to the named branch head commit but I'd like to take those local changes with me." My examples worked in topic branches and after finishing work in each branch (meaning, making commits to record changes to each branch I was working on), switched to another branch. After making a commit, the index file exactly matches the current HEAD (i.e. "git diff HEAD" would report empty) and the working tree exactly matches the index file (i.e. "git diff" would report empty too), so there is no local changes to carry around. Note that this is not always possible. If the local modifications you have contradict with what the switched-to branch has, 'git checkout' would complain and refuse to check things out. But if you know your index file and the working tree is in sync with the HEAD commit, 'git checkout' is the preferred way to switch branches. It is somewhat more efficient, too. On the other hand, what 'git checkout -f' is telling git is that "I do not want you to trust what the index file records or what the current HEAD is. I just want to have my index matched to the named branch head commit, and have those blobs recorded in that commit checked out in the working tree". It is designed to work even when you do not have a clue about the relationship between what your index records, what your working tree files are and what your current HEAD commit has, and can be used as the last resort after a failed merge really messed up your working tree and you would rather start the merge from scratch. Switching to the current branch ('git checkout -f HEAD') makes sense in that situation, while 'git checkout HEAD' never does. Here is a short demonstration (my "ls" is aliased to "ls -aF"). $ git show-branch * [master] Initial - have frotz ! [nitfol] Add nitfol ! [rezrov] Add rezrov --- + [rezrov] Add rezrov + [nitfol] Add nitfol +++ [master] Initial - have frotz $ ls ./ ../ .git/ frotz The 'master' branch has one file, 'frotz'. Two branches are derived from it, 'rezrov' and 'nitfol', each adds one file with the same name as the branch name, without touching 'frotz'. We are on the 'master' branch. $ git checkout nitfol $ git ls-files frotz nitfol $ ls ./ ../ .git/ frotz nitfol We use 'git checkout' without '-f'. It checked out 'nitfol' and kept 'frotz'. $ git checkout -f rezrov $ git ls-files frotz rezrov $ ls ./ ../ .git/ frotz nitfol rezrov This time, we tried 'git checkout' with '-f'. It checked out 'rezrov' and kept 'frotz', but failed to remove 'nitfol', because we told it to ignore the fact that we came from 'nitfol' branch. If it were allowed to use that information, it would have noticed that the original branch had 'nitfol' recorded but the branch we are switching to did not have it, and would have removed it from the working tree. Also notice that the index file matches the 'rezrov' commit -- it does not know about 'nitfol' file anymore. $ rm -f nitfol $ date >xyzzy $ git add xyzzy Now, after removing the unwanted 'nitfol' file, let's introduce some local changes. Remember we are still on 'rezrov' branch. $ git checkout nitfol $ git ls-files frotz nitfol xyzzy $ ls ./ ../ .git/ frotz nitfol xyzzy $ git diff --name-status HEAD A xyzzy Now we tell 'git checkout' to switch to 'nitfol' branch, without losing our local changes. The file 'nitfol' is back (checked out), and 'rezrov' is gone (because this time it was allowed to trust the current HEAD and noticed 'rezrov' was there in the original but not in the branch we are switching to). However, neither the working file nor the index matches the 'nitfol' branch head -- it kept the local addition of new file 'xyzzy' (i.e. your local changes were preserved). One typical scenario I use 'git checkout' without '-f' is: * on some branch, start working on something. * realize that the change I am making belongs to a different topic. * 'git checkout' to that other topic branch, with my changes. * keep working and make commit on the other topic branch. * come back (with 'git checkout') to the original branch. But usually I am even less organized -- I'd usually end up doing: * on some branch, start working on something. * realize that some the changes I am making belong to a different topic, while other changes belong to the curren branch. * stash away "git diff HEAD" output. revert parts that are not relevant to the current topic branch. * make commit on the current topic branch. * 'git checkout' to that other topic branch. Apply the rest of the diff output. * keep working and make commit on the other topic branch. Personally I don't remember using 'git checkout -f' myself. When I really want to sync my index file and the working tree to the current branch head, I tend to do 'git reset --hard' instead. Unlike 'git checkout -f HEAD', this removes the files I added to the working tree and the index since my current HEAD commit. One downside is that 'git reset --hard' *is* a very expensive operation. ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Pull from one branch to another? 2005-09-29 6:07 Pull from one branch to another? Jeff Garzik 2005-09-29 6:35 ` Junio C Hamano @ 2005-09-29 7:06 ` Junio C Hamano 2005-09-29 17:52 ` Tony Luck 2 siblings, 0 replies; 7+ messages in thread From: Junio C Hamano @ 2005-09-29 7:06 UTC (permalink / raw) To: Jeff Garzik; +Cc: git Jeff Garzik <jgarzik@pobox.com> writes: > ... It's been working for me, for months, but... ... will stop working as of Oct 1st? ;-) > git-resolve-script HEAD $1 "`pwd` branch '$1'" It is planned that we will stop installing *-script compatibility symbolic links starting as of 0.99.8. ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Pull from one branch to another? 2005-09-29 6:07 Pull from one branch to another? Jeff Garzik 2005-09-29 6:35 ` Junio C Hamano 2005-09-29 7:06 ` Pull from one branch to another? Junio C Hamano @ 2005-09-29 17:52 ` Tony Luck 2 siblings, 0 replies; 7+ messages in thread From: Tony Luck @ 2005-09-29 17:52 UTC (permalink / raw) To: Jeff Garzik; +Cc: Git Mailing List On 9/28/05, Jeff Garzik <jgarzik@pobox.com> wrote: > $ git checkout -f sky2 ... > $ git checkout -f upstream ... > $ git checkout -f ALL Those "-f" arguments to git checkout shouldn't be needed, and may eventually cause a problem. The "-f" option doesn't quite work as "forcibly" as you might think it does because it ignores the index, and so doesn't do what you[1] expect with files that exist in the previously checked out tree, and not in the new tree ... it won't delete them, so there's a small risk that with the wrong git operation you may accidentally add them to the new branch. In the sequence you described a simple "git checkout" should do the right thing ... and will be faster too. -Tony [1] well what *I* expected, and was part of a snafu I made earlier ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2005-09-29 17:52 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2005-09-29 6:07 Pull from one branch to another? Jeff Garzik 2005-09-29 6:35 ` Junio C Hamano 2005-09-29 6:54 ` Use of the -f flag on checkout Alan Chandler 2005-09-29 7:09 ` Matthias Urlichs 2005-09-29 9:02 ` Junio C Hamano 2005-09-29 7:06 ` Pull from one branch to another? Junio C Hamano 2005-09-29 17:52 ` Tony Luck
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).