An interactive shell for git

[git-sh][1] (git shell) is an interactive shell for git and its new way to use Git. git-sh provides a dedicated shell just for our Git commands. Installing git-sh: $ sudo apt-get install git-sh Start a shell with git-sh: $ cd liquor $ git-sh master!liquor *> At its simplest, git-sh saves you from typing the word git over and over. We are familier with these type of git commands: $ git status $ git add -p $ git commit $ git push With git-sh this gets easier: $ git-sh master!liquor *> status master!liquor *> add -p master!liquor *> commit -m "message" master!