Git常用命令

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