Git常用命令
git reflog
显示git最近的一系列的操作记录
git reflog head@{0}
git svn clone
从svn库检出至本地git库
git svn clone -T trunk -b branch -t tags
git svn dcommit
从本地git库提交至svn
git svn dcommit --rmdir
git stash
将当前的改动保存至暂存区(压栈)git stash pop
从暂存区取出最近一次保存的改动(弹栈)git gc --aggressive
以最高压缩率,压缩git仓库git bundle create
将git整个项目打包为一个bundle文件,方便移动或者长久保存
git bundle create GIT_BUNDLE_FILE --all
git add
增加提交文件
git add *.*
将所有新增文件增加至提交中
git add -u
移除所有已经删除的文件至提交中git commit
提交历史
git commit -m "Commit Log"