1、配置
git config --globaluser.name"You Name"
git config --global user.emailyourmail@server.com
ssh-keygen -C'yourmail@server.com' -t rsa
2、技巧
git remote prune origin 删除远程分支不存在,但本地存在的分支
git rm file path —cached 从版本跟踪中删除一个文件
3、设置此文件没有变化
git update-index --assume-unchanged path
网友评论