git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Why can't git pull --rebase work if there are modified files?
@ 2008-12-30 21:40 skillzero
  2008-12-30 23:09 ` Thomas Rast
  0 siblings, 1 reply; 2+ messages in thread
From: skillzero @ 2008-12-30 21:40 UTC (permalink / raw)
  To: git

If I have locally modified files and I try to 'git pull --rebase', it
fails because of the locally modified files. If I don't use the
--rebase option, it works (but generates a merge commit if I have
local commits). Why does rebasing require an unmodified checkout? It
seems like it should only stop if I something in the newly fetched
changes conflict with my local changes.

I almost always have modified files in my checkout for things I'm
working on. I also often have a commit or two that haven't been pushed
because I'm waiting until I get to a good point before pushing. If I
do 'git pull', I end up with a merge commit each time. That's why I
want to use --rebase, but for it to work, I have to git stash, then
rebase then git stash pop.

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: Why can't git pull --rebase work if there are modified files?
  2008-12-30 21:40 Why can't git pull --rebase work if there are modified files? skillzero
@ 2008-12-30 23:09 ` Thomas Rast
  0 siblings, 0 replies; 2+ messages in thread
From: Thomas Rast @ 2008-12-30 23:09 UTC (permalink / raw)
  To: skillzero; +Cc: git

[-- Attachment #1: Type: text/plain, Size: 2219 bytes --]

skillzero@gmail.com wrote:
> If I have locally modified files and I try to 'git pull --rebase', it
> fails because of the locally modified files. If I don't use the
> --rebase option, it works (but generates a merge commit if I have
> local commits). Why does rebasing require an unmodified checkout? It
> seems like it should only stop if I something in the newly fetched
> changes conflict with my local changes.

First you need to be aware that 'git pull --rebase' is conceptually
the same as 'git fetch && git rebase upstream', where 'upstream' is
the remote branch tracked by your current branch.  (The canonical
choice is upstream=origin/foo for a branch foo.)  git-fetch is of no
further interest to the discussion, as it does not touch the working
tree in any way.

git-rebase is not concerned with "newly fetched changes".  It
*rewinds* your branch to the updated 'upstream' tip, and then
*rebuilds* your commits on top of that.  This involves a lot of
resetting and applying patches, which appears to be why it enforces a
clean working tree.

You can use git-stash (see the man page) to temporarily save away your
uncommitted changes, however.  Maybe you could even write a patch to
git-rebase that lets it automatically save and restore uncommitted
changes?

> I almost always have modified files in my checkout for things I'm
> working on. I also often have a commit or two that haven't been pushed
> because I'm waiting until I get to a good point before pushing. If I
> do 'git pull', I end up with a merge commit each time. That's why I
> want to use --rebase, but for it to work, I have to git stash, then
> rebase then git stash pop.

You could probably improve your workflow a lot by using topic
branches.  See the recently added gitworkflows manpage, also available
at

  http://www.kernel.org/pub/software/scm/git-core/docs/gitworkflows.html

or, e.g., Tv's excellent introduction to git called "Version Control
for Du^H^HDevelopers":

  http://eagain.net/blog/2008/08/11/ep-talk-videos.html

(Pretty much the second half is about branch workflows, topic branches
are explicitly introduced at ~44:15.)

-- 
Thomas Rast
trast@{inf,student}.ethz.ch


[-- Attachment #2: This is a digitally signed message part. --]
[-- Type: application/pgp-signature, Size: 197 bytes --]

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2008-12-30 23:10 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-12-30 21:40 Why can't git pull --rebase work if there are modified files? skillzero
2008-12-30 23:09 ` Thomas Rast

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).