我按照git-push-existing-repo-to-a-new-and-different-remote-repo-server
中的步骤进行操作但是我在上游修改了一些文件并且没有权限推送它,所以我想把它推到一个名为origin的新代表。
答案 0 :(得分:0)
您必须添加所有文件,而不是推送
# add all your changes
git add .
# commit your changes
git commit -m "Message"
现在您可以进行更改了。然后添加一个新的遥控器并将合并的分支推送到您的第二个遥控器
# pull changes into the current branch
git pull origin master
# now push the changes
git push upstream master