我将存储库克隆到我的机器中。更改了文件。然后承诺了。
BackchannelApplication-1 git:(master) ✗ git commit
[master c5c7f47] Updating integration test
1 files changed, 13 insertions(+), 10 deletions(-)
➜ BackchannelApplication-1 git:(master) git status
# On branch master
# Your branch is ahead of 'origin/master' by 1 commit.
#
nothing to commit (working directory clean)
git log
commit c5c7f47b6f96042beef3cddc051f5a38923d279a
Author: Name <emailid>
Date: Tue Oct 18 18:58:51 2011 -0400
Updating integration test
在我的机器上,我可以看到文件已更改,但在github上看不到相同的内容。为什么这样?
谢谢!
答案 0 :(得分:8)
提交后,您需要使用git push
将提交推送到外部存储库(GitHub)。
答案 1 :(得分:2)
然后,您需要将更改推回原点。
// of the format: git push [alias] [branch]
git push origin master
提交后,您只将更改提交到计算机上的本地存储库。