- git tools
gitk和gitg可以用GUI来查看和管理git。(个人感觉gitg更好看一点^_^
- git stash
usage: git stash list [<options>]
or: git stash show [<stash>]
or: git stash drop [-q|--quiet] [<stash>]
or: git stash ( pop | apply ) [--index] [-q|--quiet] [<stash>]
or: git stash branch <branchname> [<stash>]
or: git stash [save [--patch] [-k|--[no-]keep-index] [-q|--quiet]
[-u|--include-untracked] [-a|--all] [<message>]]
or: git stash clear
git stash 可以暂时保存你的更改。就像一个栈,你可以把现在的更改posh到栈里面,等待一些操作之后再从栈里面pop出来~