【发布时间】:2012-01-29 04:36:27
【问题描述】:
我是 git 新手,无法理解以下行为:
我有一个在本地克隆的 bitbucket 存储库,然后我在本地修改和提交,然后我推送到远程存储库。如果我进行隐式推送或“推送来源”,则没有问题。如果我使用显式远程 url 推送,我会收到状态消息“您的分支比 'origin/master' 领先 1 个提交”。
似乎 git 无法将显式地址识别为与 origin 相同,那么到底发生了什么。如果我再做一次隐式推送,它什么也不做,但会清除上述消息。
这是一个示例会话:
baz@bhost:/more/coding/git-tests/ask1$ git --version
git version 1.7.2.5
baz@bhost:/more/coding/git-tests$ git clone https://shishani@bitbucket.org/shishani/dirasi.git ask1
Cloning into ask1...
Password:
remote: Counting objects: 24054, done.
remote: Compressing objects: 100% (6300/6300), done.
remote: Total 24054 (delta 17124), reused 24024 (delta 17106)
Receiving objects: 100% (24054/24054), 11.83 MiB | 251 KiB/s, done.
Resolving deltas: 100% (17124/17124), done.
baz@bhost:/more/coding/git-tests$ cd ask1
baz@bhost:/more/coding/git-tests/ask1$ jed setup.py
baz@bhost:/more/coding/git-tests/ask1$ git commit -a
[master a053f28] modified: setup.py
1 files changed, 1 insertions(+), 0 deletions(-)
baz@bhost:/more/coding/git-tests/ask1$ git status
# On branch master
# Your branch is ahead of 'origin/master' by 1 commit.
#
nothing to commit (working directory clean)
baz@bhost:/more/coding/git-tests/ask1$ git remote show origin
Password:
* remote origin
Fetch URL: https://shishani@bitbucket.org/shishani/dirasi.git
Push URL: https://shishani@bitbucket.org/shishani/dirasi.git
HEAD branch: master
Remote branch:
master tracked
Local branch configured for 'git pull':
master merges with remote master
Local ref configured for 'git push':
master pushes to master (fast-forwardable)
baz@bhost:/more/coding/git-tests/ask1$ git push
Password:
Counting objects: 5, done.
Delta compression using up to 2 threads.
Compressing objects: 100% (3/3), done.
Writing objects: 100% (3/3), 314 bytes, done.
Total 3 (delta 2), reused 0 (delta 0)
remote: bb/acl: shishani is allowed. accepted payload.
To https://shishani@bitbucket.org/shishani/dirasi.git
5e9ffd1..a053f28 master -> master
baz@bhost:/more/coding/git-tests/ask1$ git status
# On branch master
nothing to commit (working directory clean)
baz@bhost:/more/coding/git-tests/ask1$ jed setup.py
baz@bhost:/more/coding/git-tests/ask1$ git commit -a
[master 6d0e236] modified: setup.py
1 files changed, 1 insertions(+), 0 deletions(-)
baz@bhost:/more/coding/git-tests/ask1$ git push https://shishani@bitbucket.org/shishani/dirasi.git master
Password:
Counting objects: 5, done.
Delta compression using up to 2 threads.
Compressing objects: 100% (3/3), done.
Writing objects: 100% (3/3), 298 bytes, done.
Total 3 (delta 2), reused 0 (delta 0)
remote: bb/acl: shishani is allowed. accepted payload.
To https://shishani@bitbucket.org/shishani/dirasi.git
a053f28..6d0e236 master -> master
baz@bhost:/more/coding/git-tests/ask1$ git status
# On branch master
**# Your branch is ahead of 'origin/master' by 1 commit.** <-- this does not reflect current state
#
nothing to commit (working directory clean)
baz@bhost:/more/coding/git-tests/ask1$ git push
Password:
Everything up-to-date
baz@bhost:/more/coding/git-tests/ask1$ git status
# On branch master
nothing to commit (working directory clean)
【问题讨论】:
-
这个问题可能被错误地关闭为错误问题的重复。一旦我完成了 Git 的欺骗锤,我将开始重新打开并正确关闭这样的问题,作为 other Your branch is ahead of 'origin/master' questions 的重复项。
标签: git