Skip to content

dogfeet/git-tles

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

tools

  • git-todo: A tool for branch summary
  • git-ff: A fetching tool

git-todo

git-todo list branches and tags with author, last commit message, SHA, distances from base branches. you can get a summary for your repository.

Install

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

Run

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

Options

To include remote branches, Add -r option

To include tags, Add '-t' option

To include both of remote brnaches and tags, Add '-a' option

git-ff

It is a git helper like git-up. I will write later.

Releases

No releases published

Packages

No packages published

Languages