想记录一次git的使用,网上的教程所述备已,只想列出一些细节问题,以作备忘
新的服务器首次使用git时,需要在github上上传ssh的密钥,否则无法登陆
如果是clone其他项目,在其基础上修改后做自己项目的,需要删除掉工程目录下/.git目录,然后再进行正常操作
把旧项目提交到Git上,但是会有一些历史记录,这些历史记录中可能会有项目密码等敏感信息。如何删除这些历史记录,形成一个全新的仓库,并且保持代码不变呢?
1.Checkout
git checkout --orphan latest_branch
2. Add all the files
git add -A
3. Commit the changes
git commit -am "commit message"
4. Delete the branch
git branch -D master
5.Rename the current branch to master
git branch -m master
6.Finally, force update your repository
git push -f origin master