git切换ssh和http协议
- 切换协议:
-
查看当前remote
git remote -v
-
切换到http:
git remote set-url https://github.com/username/repository.git
-
切换到ssh:
git remote set-url git@github.com:username/repository.git
某些文件不想提交
# 执行命令将文件加入不提交队列git update-index --assume-unchanged 你的文件路径# 执行命令将文件取消加入不提交队列git update-index --no-assume-unchanged 你的文件路径