- git-todo: A tool for branch summary
- git-ff: A fetching tool
git-todo
list branches and tags with author, last commit message, SHA, distances from base branches. you can get a summary for your repository.
Put git-todo
in your excutable path:
cd ~
git clone https://github.com/dogfeet/git-tles
echo "export PATH=~/bin:$PATH" >> ~/.bash_profile
mkdir ~/bin
cd ~/bin
ln -s ~/git-tles/git-todo git-todo
Usage is very simple. Just run:
git todo
it show your local branches.
- means checkouted branch.
- is base branch(default - master).
- is distance.
private-ko-build-ebook
branch has 3 commits base branch does not. - is distance.
private-ko-build-ebook
branch does not have 23 commits base branch has.
To change base branch to 'ko' branch, Add 'todo.base' config:
git config todo.base ko
To include remote branches, Add -r
option
To include tags, Add '-t' option
To include both of remote brnaches and tags, Add '-a' option
It is a git helper like git-up. I will write later.