如何将现有的修改后的存储库推送到新的代理?

时间:2017-04-12 01:58:25

标签: git

我按照git-push-existing-repo-to-a-new-and-different-remote-repo-server

中的步骤进行操作

但是我在上游修改了一些文件并且没有权限推送它,所以我想把它推到一个名为origin的新代表。

Git告诉我,我有未分期更改,所以接下来该怎么办? enter image description here

1 个答案:

答案 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