From d060dfd3e619d32291b872b74462a8238bf55f1b Mon Sep 17 00:00:00 2001 From: Yann Dirson Date: Fri, 2 Feb 2007 17:18:40 +0000 Subject: [PATCH] Rebase to parent branch after git-fetch in "stg pull". Previously we were just assuming that the remote from which we just failed defined a local branch whose name was the same as the remote def, and that this branch was the parent. While this is true for the most common case (branch "origin" from remote "origin"), it is quite an unflexible assumption. Also move the rebasing from git.pull to commands.pull.func since that is clearly stgit-level stuff, and rename git.pull() to git.fetch() to match default behaviour. Signed-off-by: Yann Dirson --- stgit/commands/pull.py | 20 +++++++++++--------- stgit/git.py | 10 +++------- 2 files changed, 14 insertions(+), 16 deletions(-) diff --git a/stgit/commands/pull.py b/stgit/commands/pull.py index f837fd4..15bbed6 100644 --- a/stgit/commands/pull.py +++ b/stgit/commands/pull.py @@ -26,15 +26,15 @@ from stgit import stack, git help = 'pull the changes from the remote repository' usage = """%prog [options] [] -Pull the latest changes from the given repository (defaulting to -'origin'). This command works by popping all the patches from the -stack, pulling the changes in the parent repository, setting the base -of the stack to the latest parent HEAD and pushing the patches back -(unless '--nopush' is specified). The 'push' operation can fail if -there are conflicts. They need to be resolved and the patch pushed -again. +Pull the latest changes from the given remote repository (defaulting +to branch..remote, or 'origin' if not set). This command works +by popping all the patches from the stack, pulling the changes in the +parent repository, setting the base of the stack to the latest parent +HEAD and pushing the patches back (unless '--nopush' is specified). +The 'push' operation can fail if there are conflicts. They need to be +resolved and the patch pushed again. -Check the 'git pull' documentation for the format.""" +Check the 'git fetch' documentation for the format.""" options = [make_option('-n', '--nopush', help = 'do not push the patches back after pulling', @@ -71,7 +71,9 @@ def func(parser, options, args): # pull the remote changes print 'Pulling from "%s"...' % repository - git.pull(repository) + git.fetch(repository) + if (config.get('stgit.pull-does-rebase')): + git.reset(tree_id = git.rev_parse(crt_series.get_parent_branch())) print 'done' # push the patches back diff --git a/stgit/git.py b/stgit/git.py index c7cc6a7..022d607 100644 --- a/stgit/git.py +++ b/stgit/git.py @@ -808,9 +808,9 @@ def reset(files = None, tree_id = None, check_out = True): if not files: __set_head(tree_id) -def pull(repository = 'origin', refspec = None): - """Pull changes from the remote repository. Uses 'git-fetch' - and moves the stack base. +def fetch(repository = 'origin', refspec = None): + """Fetches changes from the remote repository, using 'git-fetch' + by default. """ # we update the HEAD __clear_head_cache() @@ -823,10 +823,6 @@ def pull(repository = 'origin', refspec = None): if __run(command, args) != 0: raise GitException, 'Failed "%s %s"' % (command, repository) - if (config.get('stgit.pull-does-rebase')): - # FIXME! - reset(tree_id = rev_parse(repository)) - def repack(): """Repack all objects into a single pack """ -- 2.11.0