[Bash-completion-devel] [Bash-completion-commits] [SCM] bash-completion branch, master, updated. 0f2656669fbdf627a3ddf11bdb72e3ec9cef68fd

Ville Skyttä ville.skytta at iki.fi
Mon Mar 30 20:50:53 UTC 2009


On Monday 30 March 2009, Guillaume Rousse wrote:
> Guillaume Rousse a écrit :
> > The following commit has been merged in the master branch:
> > commit 0924d059c6c845069b10482882c821088ccaeefa
> > Merge: 91daa8de58a6e88d5a4b55621e2e7d5e732c65ea
> > dc88329e8eea8424f2e1dc7efc50a80e240708c4 Author: Guillaume Rousse
> > <guillomovitch at zarb.org>
> > Date:   Mon Mar 30 22:02:55 2009 +0200
> >
> >     Merge branch 'master' into guillomovitch
>
> This seems to be a commit related to my own local branch, I don't
> understand why it does generate a mail here... I just hop I don't screw
> up anything in master branch.

Happened to me too once, I don't claim to understand it either but it didn't 
seem to have any bad effects.  The web UI doesn't show any changes the usual 
way either, just "Simple merge", just as it did for me as well.

http://git.debian.org/?p=bash-completion/bash-
completion.git;a=commitdiff;h=0924d059c6c845069b10482882c821088ccaeefa

> Also, when merging changes from my own branches into master branch, how
> can I merge multiples commits into single ones, so as to ditch invalid
> intermediate steps ?

I don't know, but the way I do it is that I clean up my commits locally before 
pushing them using git commit --amend.  For example:

# hack bash_completion
git add bash_completion
git commit

# hack bash_completion more, related to the previous commit
git add bash_completion
git commit --amend # then edit the commit message if appropriate

The result of the above is a clean single local commit.



More information about the Bash-completion-devel mailing list