git使用技巧

  • 恢复git 本地删除的文件
git ls-files -d | xargs git checkout
  • 打tag
git tag -a 'V20160726' -m "生成数据用于通用模型评估"
git push origin  V20160726
  • 删除tag
git tag -d V20160726 
git push origin :refs/tags/V20160726
  • clone 部分代码
git clone --depth=1 --no-single-branch  xxx/path/xxx.git
git clone --depth 1 https://github.com/dogescript/dogescript.git
git remote set-branches origin 'remote_branch_name'
git fetch --depth 1 origin remote_branch_name
git checkout remote_branch_name
posted @ 2016-01-20 15:29  bregman  阅读(120)  评论(0编辑  收藏  举报