Re: A small Git bug

2016-04-10 Thread Philip Oakley
From: "Karthik Nayak" Hello, On Sun, Apr 10, 2016 at 8:47 PM, Victor Porton wrote: I have three branches: master, prerelease, and devel. Suppose now we are in master. I often run the following command (in fact it is an alias, to save typing): git

Re: A small Git bug

2016-04-10 Thread Karthik Nayak
Hello, On Sun, Apr 10, 2016 at 8:47 PM, Victor Porton wrote: > I have three branches: master, prerelease, and devel. > > Suppose now we are in master. > > I often run the following command (in fact it is an alias, to save > typing): > > git push && git checkout prerelease && git

A small Git bug

2016-04-10 Thread Victor Porton
I have three branches: master, prerelease, and devel. Suppose now we are in master. I often run the following command (in fact it is an alias, to save typing): git push && git checkout prerelease && git merge master && git push && git checkout devel && git merge prerelease && git push && git