使用先前使用的同一存储库时出现问题
我在Rails项目中尝试了一些新的东西,最终失去了它的主要功能,但是我在GitHub上混合了我的项目。所以我从那里下载,现在当我对该新下载的文件进行一些更改时,我现在无法git到相同的仓库。如何混入相同的存储库。就像它现在有8次提交,如果我再进行一次提交,它应该是第9次提交。有帮助吗?
希望问题很明显。
答案 0 :(得分:1)
git
terminal
并输入:git clone "the url of your repo on your git account"
git
密码cloning
应用之后,您必须添加branch
。如果您只有master branch
,则无需执行任何操作即可更改代码,然后git status
,git add "file path"
,git push origin master
现在您可以在commit
帐户中看到自己的changes
和git
!
git remote -v
git remote set-url origin "the repo path"