简介
GIT utilities
安装及更新
brew install git-extras
brew upgrade git-extras
Commands 简介
https://github.com/tj/git-extras/blob/master/Commands.md
git contrib
Output author's contributions to a project.
git summary
Outputs a repo summary
git info
Show information about the repo
git undo
Remove the latest commit
git clear
Does a hard reset and deletes all untracked files from the working directory, including those in .gitignore
git clear-soft
Does a hard reset and deletes all untracked files from the working directory, excluding those in .gitignore
git browse
Opens the current git repository website in your default web browser
git bulk
git bulk adds convenient support for operations that you want to execute on multiple git repositories.
Register the current directory as a workspace to git bulk
git bulk --addcurrent personal
Run a git command on the repositories of the current workspace
git bulk fetch
Run a git command but ask user for confirmation on every execution (guarded mode)
git bulk -g fetch