Hi all,

If I do

git clone 'repo'

then do some work, then

git push origin master

I get
error: failed to push some refs to 'repo'

Then if I do

git pull --rebase
git push origin master

it works fine.

However, if I
git clone 'repo'
git branch Experimental
git checkout Experimental

do some work

git push origin master

I get
error: failed to push some refs to 'repo'

Then if I do

git pull --rebase
git push origin master

I get the same

error: failed to push some refs to 'repo'

Is there something that needs to be done different if working not
directly on the master branch?

Thanks,

David

-- 
You received this message because you are subscribed to the Google Groups "Git 
for human beings" group.
To post to this group, send email to git-us...@googlegroups.com.
To unsubscribe from this group, send email to 
git-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/git-users?hl=en.

Reply via email to