In the presence of multiple related git repos, it helps to see their status (branch, modification) side by side, as in the following screenshot:
Here the color codings denote the 5 situations between local and remote branches:
- white: the local branch has no remote branch.
- green: the local branch is the same as the remote branch.
- red: the local branch has diverged from the remote branch.
- purple: the local branch is ahead of the remote branch (good for push).
- yellow: the local branch is behind the remote branch (good for merge).
The color choices of purple for ahead and yellow for behind is motivated by blueshift and redshift.
The extra status symbols have the following meaning:
+
: staged change exists*
: unstaged change exists
The supported commands are
gita add <repo-path>
: add repo togita
gita rm <repo-name>
: remove repo fromgita
gita ls
: display the status of all reposgita ls <repo-name>
: display the absolute path of the specified repogita fetch
: fetch all remote updatesgita fetch <repo-name(s)>
: fetch remote updates for the specified repo(s)gita merge <repo-name(s)>
: merge remote updates for the specified repo(s)gita push <repo-name(s)>
: push local updates of the specified repo(s) to remote
The repo paths are saved in ~/.gita_path
Download the source code and run pip3 install -e <gita source folder>
.
I also put the following line in my .bashrc
alias gita="python3 -m gita"
- auto-completion