* Re: RFC PATCH: support for default remote in StGIT
[not found] <1165657360.2816.61.camel@portland.localdomain>
@ 2006-12-10 16:41 ` Catalin Marinas
2007-01-09 7:20 ` [PATCH] Check git pull remote before defaulting to 'origin' Pavel Roskin
0 siblings, 1 reply; 3+ messages in thread
From: Catalin Marinas @ 2006-12-10 16:41 UTC (permalink / raw)
To: Pavel Roskin; +Cc: GIT list
On 09/12/06, Pavel Roskin <proski@gnu.org> wrote:
> Sorry, I was unlucky to pick your address from setup.py, where it's
> incorrect (gmail.org, not gmail.com), so I'm sending you another copy.
Thanks for spotting this.
> One approach is to leave the default remote selection completely to git.
> The downside is that StGIT prints the remote it's pulling from. Now
> StGIT will have to print common words that it's pulling something. Or
> maybe it shouldn't print anything?
Yann started a thread on this but I didn't find the time to look at
this properly. He's idea was to store the remote branch information in
the StGIT metadata but I'd like to leave this for GIT to deal with.
The StGIT UI can probably be modified to display something useful but
I don't see a problem if it doesn't.
> The other approach is to calculate the default remote in StGIT. This
> would allow StGIT to tell the user where it's pulling from.
>
> However, I had to introduce a function that ignores errors except there
> is any output on stderr. This is because git-repo-config returns error
> code 1 if it cannot find the key. Maybe git-repo-config should have an
> option not to fail in this case? Perhaps a default value to return?
With the recent changes, StGIT shares the config files with GIT and it
has direct access to git settings without the need to use
git-repo-config. Just use "config.has_key" and "config.get_option".
Maybe a combination of your two options - StGIT could try to get the
default branch and, if there isn't any in the config files, just
invoke git-pull without any argument (and display something like
"pulling from default").
--
^ permalink raw reply [flat|nested] 3+ messages in thread
* [PATCH] Check git pull remote before defaulting to 'origin'
2006-12-10 16:41 ` RFC PATCH: support for default remote in StGIT Catalin Marinas
@ 2007-01-09 7:20 ` Pavel Roskin
2007-01-09 10:30 ` Catalin Marinas
0 siblings, 1 reply; 3+ messages in thread
From: Pavel Roskin @ 2007-01-09 7:20 UTC (permalink / raw)
To: Catalin Marinas; +Cc: git
Check git pull remote before defaulting to 'origin'
Signed-off-by: Pavel Roskin <proski@gnu.org>
---
stgit/commands/pull.py | 10 ++++++++--
1 files changed, 8 insertions(+), 2 deletions(-)
diff --git a/stgit/commands/pull.py b/stgit/commands/pull.py
index 227249e..7c5db22 100644
--- a/stgit/commands/pull.py
+++ b/stgit/commands/pull.py
@@ -50,10 +50,16 @@ def func(parser, options, args):
if len(args) > 2:
parser.error('incorrect number of arguments')
- repository = 'origin'
- refspec = None
if len(args) >= 1:
repository = args[0]
+ else:
+ section = 'branch "%s"' % git.get_head_file()
+ if config.has_option(section, 'remote'):
+ repository = config.get(section, 'remote')
+ else:
+ repository = 'origin'
+
+ refspec = None
if len(args) == 2:
refspec = args[1]
--
Regards,
Pavel Roskin
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] Check git pull remote before defaulting to 'origin'
2007-01-09 7:20 ` [PATCH] Check git pull remote before defaulting to 'origin' Pavel Roskin
@ 2007-01-09 10:30 ` Catalin Marinas
0 siblings, 0 replies; 3+ messages in thread
From: Catalin Marinas @ 2007-01-09 10:30 UTC (permalink / raw)
To: Pavel Roskin; +Cc: git
On 09/01/07, Pavel Roskin <proski@gnu.org> wrote:
> Check git pull remote before defaulting to 'origin'
Thanks. Applied.
--
Catalin
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2007-01-09 10:30 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <1165657360.2816.61.camel@portland.localdomain>
2006-12-10 16:41 ` RFC PATCH: support for default remote in StGIT Catalin Marinas
2007-01-09 7:20 ` [PATCH] Check git pull remote before defaulting to 'origin' Pavel Roskin
2007-01-09 10:30 ` Catalin Marinas
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).