有人可以解释正确的终端命令来更新我的 Amazon EC2 机器上的存储库吗?我已经完成了 git clone 'git url' 并且存储库现在在我的 EC2 实例上,但我想知道如何更新存储库。
感谢您的任何帮助,您可以提供。
有人可以解释正确的终端命令来更新我的 Amazon EC2 机器上的存储库吗?我已经完成了 git clone 'git url' 并且存储库现在在我的 EC2 实例上,但我想知道如何更新存储库。
感谢您的任何帮助,您可以提供。
假设您使用正确的遥控器(即 master)设置 git,您可以使用git pull
or git 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
。
如果您想将克隆的 repo 更新为您从中克隆它的远程的当前状态,您可能需要git pull
最有可能的是,您需要这样做:
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
祝你好运!