Gittern is bundle of Git extensions scripts written in shelljs, featuring to reduce daily routines verbosity when working with Git.
sudo npm install -g gittern
- OSX 10.6 - tested
- Msysgit - tested
Print the current working branch name.
Print the remote tracking branch of the current/specified branch.
Figure out the Git repository name of the current working copy.
Receive fast-forward changes from the remote tracking branch by rebasing local changes onto it.
Discard any local changes made to align with the HEAD of remote tracking branch.
Remove both the local and the remote tracking branch.
Execute the command, in each of git repo (sub) directory that are matched by the specified pattern.
Automatically add all sub modules from your .gitmodules file in the working directory.
Generate an URL of the Git web interface that points to the specified git ref/tag/branch.
This command is to navigate to the next sequential tag.
If the TIP of your current index reflects a tag name ends up with number, this command is to checkout the
next tag name in sequential, say you're now on, e.g. yesterday(1)
and has another tag called today(2)
, this
command will checkout today(2)
for you, and the next call will be expecting something like tomorrow(3)
or
whatever-3
basically any tag ends up with three.
It is to stop at the end of sequence if there are not more tags available.