在.gitignore添加后,git仍然跟踪文件的处理方法
有时在.gitignore中声明了希望ignore的文件,但git仍然会继续跟踪。首先commit当前修改,否则会丢失修改,然后: git rm -r –cached . git add . git commit -m "fixed untracked files" Windows使用: git rm . -r –cached git add . git commi…
Read more
learn, build, evaluate
有时在.gitignore中声明了希望ignore的文件,但git仍然会继续跟踪。首先commit当前修改,否则会丢失修改,然后: git rm -r –cached . git add . git commit -m "fixed untracked files" Windows使用: git rm . -r –cached git add . git commi…
Read more
在Github上fork别人的repo后,会在自己的空间内建立一个原repo的副本,如果原项目进行了更新,自己的repo是不会自动更新的。本文介绍将自己fork与原repo进行同步的方法。 首先要指定原repo为upstream。来到原项目的页面,复制其git链接,例如: https://github.com/id/ProjectName.git 打开终端/命令行/Git Bash,cd到…
Read more
本文主要介绍Github的一些基本操作,以及使用Visual Studio与Github协同工作的方法。 1. Fork a Repo 在Github上找到了感兴趣的项目,想要获取它的源代码,并在其基础上进行开发,首先要做的是复制一份项目的代码到自己的代码仓库(repository),即Fork。 首先进入所感兴趣项目页面,如图1所示,点击页面右上角的“Fork”按钮。 …
Read more