更改了Git用户名,需要提交/推送Xcode项目

时间:2015-01-22 04:16:02

标签: xcode github

我对Github不太熟悉。

由于安全问题,我在网络客户端上更改了用户名。

我有一个Xcode项目,我在本地提交并推送到远程。

我想推送到同一个遥控器,但由于用户名现在已更改,因此无法推送。如何在Xcode / terminal中修改它?

我还想将本地用户名更改为我在遥控器上的用户名。我如何/在哪里更改

1 个答案:

答案 0 :(得分:0)

我尝试了一个我自己的GitHub项目(它是公开的而不是那么有趣,但我还是以它为例)。

当我进入命令行并执行git remote -v时,我被告知:

machine:Clock-Signal user$ git remote -v
origin  https://github.com/TomHarte/Clock-Signal.git (fetch)
origin  https://github.com/TomHarte/Clock-Signal.git (push)

假设我要将用户名更改为HarteTom,那么我的存储库的新远程位置将变为:

https://github.com/HarteTom/Clock-Signal.git

注意到这两个地点都被命名为' origin'从第一个输出我可以执行git remote set-url origin https://github.com/HarteTom/Clock-Signal.git。我可以用另一个git remote -v确认,现在会说:

machine:Clock-Signal user$ git remote -v
origin  https://github.com/HarteTom/Clock-Signal.git (fetch)
origin  https://github.com/HarteTom/Clock-Signal.git (push)