Skip to content

Instantly share code, notes, and snippets.

@t-uda
Created August 26, 2012 14:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save t-uda/3480488 to your computer and use it in GitHub Desktop.
Save t-uda/3480488 to your computer and use it in GitHub Desktop.
git show-branch を使っていないだなんて! ref: http://qiita.com/items/9b6055aa93215cb8bac1
[alias]
sb = show-branch -a
br = branch
st = !git status -s && git stash list | cat
cfm = !git sb && git br && git st
$ git sb
* [master] Add 'git show-branch'.
! [fixes] Introduce "reset type" flag to "git reset"
! [mhf] Allow "+remote:local" refspec to cause --force when fetching.
---
+ [mhf] Allow "+remote:local" refspec to cause --force when fetching.
+ [mhf~1] Use git-octopus when pulling more than one heads.
+ [fixes] Introduce "reset type" flag to "git reset"
+ [mhf~2] "git fetch --force".
+ [mhf~3] Use .git/remote/origin, not .git/branches/origin.
+ [mhf~4] Make "git pull" and "git fetch" default to origin
+ [mhf~5] Infamous 'octopus merge'
+ [mhf~6] Retire git-parse-remote.
+ [mhf~7] Multi-head fetch.
+ [mhf~8] Start adding the $GIT_DIR/remotes/ support.
*++ [master] Add 'git show-branch'.
$ git sb --all
(remote-tracking branch も表示)
$ git sb --more=5
(もっとたくさん表示)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment