更新已在EC2实例上克隆的Github repo

时间:2012-07-28 20:57:01

标签: git amazon-ec2

有人可以解释一下正确的终端命令来更新我的Amazon EC2机器上的仓库吗?我已经完成了一个git clone'git url',并且存储库现在在我的EC2实例上,但我想知道如何更新repo。

感谢您提供的任何帮助。

3 个答案:

答案 0 :(得分:1)

如果您想将克隆的回购更新为您克隆的远程的当前状态,您可能需要git pull

答案 1 :(得分:1)

假设你使用适当的遥控器(即主人)设置git,你可以使用git pullgit pull origin

您可以在此处详细了解遥控器:http://git-scm.com/docs/git-remote

使用git remote列出当前的遥控器,并使用git remote add linux-nfs git://linux-nfs.org/pub/linux/nfs-2.6.git添加一个。

答案 2 :(得分:0)

最有可能的是,你需要这样做:

git commit -a 
<This will take you into vim, hit the letter 'i' and begin typing your commit message. Then, Hit Esc, and type ':wq' and enter to save. 
git push
祝你好运!