git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* clone bug
@ 2012-01-12 13:43 Alexey Kuznetsov
  2012-01-12 14:32 ` Thomas Rast
  2012-01-12 14:36 ` Andreas Schwab
  0 siblings, 2 replies; 3+ messages in thread
From: Alexey Kuznetsov @ 2012-01-12 13:43 UTC (permalink / raw)
  To: git

Hello!

Seems like I found a bug in the clone / push logic. I'm trying to
clone remote branch master into local branch called common and unable
to push back common to master. Git trying to push local master from
different origin to common/master instead.

Here is a simple example:

# mkdir 123
# git init
# > 123
# git add .
# git commit -m "initial"
# git branch
axet-laptop:123 axet$ git branch
* master
# git remote add common https://github.com/axet/common-bin.git
# git fetch common
From https://github.com/axet/common-bin
 * [new branch]      master     -> common/master

?? already strange master (local) to the remote common/master

# axet-laptop:123 axet$ git checkout -b common common/master
Branch common set up to track remote branch master from common.
Switched to a new branch 'common'

# axet-laptop:123 axet$ git branch
* common
  master
axet-laptop:123 axet$

# cat .git/config
[...]

[branch "common"]
	remote = common
	merge = refs/heads/master

?? correct

axet-laptop:123 axet$ git pull
Already up-to-date.
axet-laptop:123 axet$ git push
To https://github.com/axet/common-bin.git
 ! [rejected]        master -> master (non-fast-forward)
error: failed to push some refs to 'https://github.com/axet/common-bin.git'
To prevent you from losing history, non-fast-forward updates were rejected
Merge the remote changes (e.g. 'git pull') before pushing again.  See the
'Note about fast-forwards' section of 'git push --help' for details.
axet-laptop:123 axet$


it tries to push local master to remote common/master which is not correct.

-- AK

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2012-01-12 14:36 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-01-12 13:43 clone bug Alexey Kuznetsov
2012-01-12 14:32 ` Thomas Rast
2012-01-12 14:36 ` Andreas Schwab

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).