Git

List all the files that ever existed in a Git repository:
git log --pretty=format: --name-status | cut -f2- | sort -u
git log --pretty=format: --name-only --diff-filter=A | sort -

配置Git用户名和密码,避免每次push等都要输入:
http://stackoverflow.com/questions/6031214/git-how-to-use-netrc-file-on-windows-to-save-user-and-password

你可能感兴趣的:(git)