我克隆了一个现有的Github存储库,然后用自己的帐户创建了一个新存储库,分别进行了git remote add other <my-new-repo-URL>
和git push -u other master
。当我在Github上查看新推送的项目时,出现的是我拉出的项目的副本,没有添加任何编辑。有谁知道为什么会这样?
答案 0 :(得分:1)
您没有提及对"commit everything"执行的步骤。
请确保在@RequestMapping
到import re
ret = 'My name is Faran'
k = ret.split(' ')[-1]
my_list = []
my_list.append(ret.replace(k,''))
my_list.append(k)
print(my_list)
之前确实提交了更改。
['My name is ', 'Faran']
还要确保您在正确的分支上进行提交。也许您提交了一个不同的分支,但是您只是将push
分支推送到other
回购。
您可以尝试$ git clone <old-repo-url>
$ cd old-repo
$ (add/edit files)
$ git add .
$ git status
$ git commit -m "Edited some files"
$ git status
On branch master
Your branch is ahead of 'origin/master' by X commits.
(use "git push" to publish your local commits)
...
$ git remote add other <new-repo-url>
$ git push -u other master
-进入另一个分支,或者改为--all
。
master