关于版本管理工具git操作的事项

1、blit是一个git仓库、类似的还有GitLab,建议用 GitLab。(可下载看看)

2、关于git提交出现无法忽略文件的处理方法

  1. git rm -r --cached .  #清除缓存  (进入目录,右键git bash here)
  2. git add . #重新trace file  
  3. git commit -m "update .gitignore" #提交和注释  
  4. git push origin master #可选,如果需要同步到remote上的话  

3、小乌龟下载地址(配汉化版)

https://tortoisegit.org/download/

4.提交代码需要输入密码处理方式

  1、找到TortoiseGit自带的Puttygen工具。

  2、 打开之后,选择Generate(生成的过程中记得移动鼠标)

       3、参考(https://www.cnblogs.com/chucklu/p/4056499.html)

 

猜你喜欢

转载自www.cnblogs.com/cainiao-vcu/p/8904002.html