]> git.ipfire.org Git - thirdparty/git.git/commit - Makefile
git-remote
authorJunio C Hamano <junkio@cox.net>
Wed, 3 Jan 2007 20:13:04 +0000 (12:13 -0800)
committerJunio C Hamano <junkio@cox.net>
Fri, 5 Jan 2007 07:22:39 +0000 (23:22 -0800)
commite194cd1e0e08611462eb9c5a731a7a3d797f9252
tree3a39744646f0d466e23d3c34a79c8c07bf268438
parent244a70e608204a515c214a11c43f3ecf7642533a
git-remote

It might be handy to have a single command that helps you manage
your configuration that relates to downloading from remote
repositories.  This currently does only about 20% of what I want
it to do.

$ git remote

shows the list of 'remotes' you have defined somewhere, and

$ git remote origin

shows the details about the named remote (in this case
"origin").  How the branches are tracked, if you have a
tracking branch that is stale, etc.

$ git add another git://git.kernel.org/pub/...

defines the default remote.another.url and remote.another.fetch
entries just like a clone does; you can say "git fetch another"
afterwards.

For it to be useful, I think it should be enhanced to:

 - check overlaps of tracking branches and warn;

 - offer to remove stale tracking branches in one go;

 - offer ways to remove or rename remote;

 - offer ways to update an existing remote, perhaps have an
   interactive mode;

Other enhancements might be also possible, but I do not think of
anything that is absolutely necessary other than the above right
now.

Signed-off-by: Junio C Hamano <junkio@cox.net>
Makefile
git-remote.perl [new file with mode: 0755]