diff options
author | Eric Wong <normalperson@yhbt.net> | 2006-03-02 12:23:17 -0800 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-03-02 23:06:04 -0800 |
commit | fd8fc4ade5c8973b3dca264cc0c26b091982870b (patch) | |
tree | 521bbde863248fe3c0fb67daaf64f4802127b4a3 /git-branch.sh | |
parent | e74ee784c7daf560044dad4a06fae66732ed414b (diff) | |
download | git-fd8fc4ade5c8973b3dca264cc0c26b091982870b.tar.gz git-fd8fc4ade5c8973b3dca264cc0c26b091982870b.tar.xz |
git-branch: add -r switch to list refs/remotes/*
If we decide to use refs/remotes/, having a convenient way to
list them would be nice.
Signed-off-by: Eric Wong <normalperson@yhbt.net>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'git-branch.sh')
-rwxr-xr-x | git-branch.sh | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/git-branch.sh b/git-branch.sh index 6ac961e6d..663a3a370 100755 --- a/git-branch.sh +++ b/git-branch.sh @@ -48,6 +48,12 @@ If you are sure you want to delete it, run 'git branch -D $branch_name'." exit 0 } +ls_remote_branches () { + git-rev-parse --symbolic --all | + sed -ne 's|^refs/\(remotes/\)|\1|p' | + sort +} + force= while case "$#,$1" in 0,*) break ;; *,-*) ;; *) break ;; esac do @@ -56,6 +62,10 @@ do delete_branch "$@" exit ;; + -r) + ls_remote_branches + exit + ;; -f) force="$1" ;; |