From: James Bowes Date: Tue, 5 Jun 2007 23:25:23 +0000 (-0400) Subject: remote: add 'rm' subcommand X-Git-Tag: v1.5.4-rc0~408^2~2 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=611360443ef4d9e2f4def1e2c97727dd04e0d244;p=git.git remote: add 'rm' subcommand Introduce git-remote rm which will: - Remove the remote config entry for . - Remove any config entries for tracking branches of . - Remove any stored remote branches of . Signed-off-by: James Bowes Signed-off-by: Junio C Hamano --- diff --git a/git-remote.perl b/git-remote.perl index f6f283ea4..f513a8ad9 100755 --- a/git-remote.perl +++ b/git-remote.perl @@ -316,6 +316,34 @@ sub update_remote { } } +sub rm_remote { + my ($name) = @_; + if (!exists $remote->{$name}) { + print STDERR "No such remote $name\n"; + return; + } + + $git->command('config', '--remove-section', "remote.$name"); + + eval { + my @trackers = $git->command('config', '--get-regexp', + 'branch.*.remote', $name); + for (@trackers) { + /^branch\.(.*)?\.remote/; + $git->config('--unset', "branch.$1.remote"); + $git->config('--unset', "branch.$1.merge"); + } + }; + + + my @refs = $git->command('for-each-ref', + '--format=%(refname) %(objectname)', "refs/remotes/$name"); + for (@refs) { + ($ref, $object) = split; + $git->command(qw(update-ref -d), $ref, $object); + } +} + sub add_usage { print STDERR "Usage: git remote add [-f] [-t track]* [-m master] \n"; exit(1); @@ -422,9 +450,19 @@ elsif ($ARGV[0] eq 'add') { } add_remote($ARGV[1], $ARGV[2], \%opts); } +elsif ($ARGV[0] eq 'rm') { + if (@ARGV <= 1) { + print STDERR "Usage: git remote rm \n"; + } + else { + rm_remote($ARGV[1]); + } + exit(1); +} else { print STDERR "Usage: git remote\n"; print STDERR " git remote add \n"; + print STDERR " git remote rm \n"; print STDERR " git remote show \n"; print STDERR " git remote prune \n"; print STDERR " git remote update [group]\n";