Re: How to push the very last modification only ?
From: Drew Northup <hidden>
Date: 2016-06-15 22:51:36
On Mon, 2011-07-18 at 20:58 +1200, Chris Packham wrote:
Hi, On 18/07/11 19:47, J. Bakshi wrote:quoted
Hello list, I have found that during push, all local commit goes into the git server.Yes that's the normal behaviour. When you think about what push is doing it's trying to make the remote branch the same as your local branch.quoted
Where I like to only push the very last modification with a meaningful comment which will be available at the git server. How can I then push only the last modified one ?This is easily doable. What you need to do is prepare a branch that you do want to push. Something like this, assuming that your current branch is 'master' and you want to push to origin/master:
<snip> Another way to do what Chris describes is to use Interactive Rebase (git rebase -i) to squash commits together. Please read the manual page for that carefully before using it on a production repository. -- -Drew Northup ________________________________________________ "As opposed to vegetable or mineral error?" -John Pescatore, SANS NewsBites Vol. 12 Num. 59