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
- clone 部分代码后如何切换
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
--- 她说, 她是仙,她不是神