diff options
author | Junio C Hamano <junkio@cox.net> | 2007-01-03 12:13:04 -0800 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2007-01-04 23:22:39 -0800 |
commit | e194cd1e0e08611462eb9c5a731a7a3d797f9252 (patch) | |
tree | 3a39744646f0d466e23d3c34a79c8c07bf268438 /Makefile | |
parent | 244a70e608204a515c214a11c43f3ecf7642533a (diff) | |
download | git-e194cd1e0e08611462eb9c5a731a7a3d797f9252.tar.gz |
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>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -179,7 +179,7 @@ SCRIPT_SH = \ SCRIPT_PERL = \ git-add--interactive.perl \ git-archimport.perl git-cvsimport.perl git-relink.perl \ - git-cvsserver.perl \ + git-cvsserver.perl git-remote.perl \ git-svnimport.perl git-cvsexportcommit.perl \ git-send-email.perl git-svn.perl |