Die Git Die
github.com
Die Git Die
1–10 of 100 posts
Re: Die Git Die
#2I've been through this exact battle so many times, git pull should only ask you for your branch if you've told it you want it to (as a safety measure i guess)/
Re: Die Git Die
#3Re: Die Git Die
#4Re: Die Git Die
#5 ! [rejected] master -> master (non-fast-forward)
And once you've invoked the gods of `push -f`, you're on your own.Re: Die Git Die
#6I think that if you had changed the above to
$ git push -u origin gh-pages
then everything else would have gone smoothly.Re: Die Git Die
#7But seriously, yes, you have to learn how to use Git in order to use Git. But you don't have to use Git. Click here to renew your Visual Source Safe license, or better, just copy your file to file.1 every time you edit it. No way that can go wrong!
Re: Die Git Die
#8It's muscle memory and makes everything more explicit and easy to understand. Although, in this case, it sounds like you expect git to be intuitive. (Which it is not)
So this basically amounts to a blog post complaining that git is hard.
Re: Die Git Die
#9you need to read "Git for dummies"
Re: Die Git Die
#10> $ git push origin gh-pages I think that if you had changed the above to $ git push -u origin gh-pages then everything else would have gone smoothly.