summaryrefslogtreecommitdiff
path: root/git-fmt-merge-msg.perl
AgeCommit message (Collapse)Author
2006-07-04Make git-fmt-merge-msg a builtinJohannes Schindelin
Signed-off-by: Johannes Schindelin <Johannes.Schindelin@gmx.de> Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-03-11fetch,parse-remote,fmt-merge-msg: refs/remotes/* supportEric Wong
We can now easily fetch and merge things from heads in the refs/remotes/ hierarchy in remote repositories. The refs/remotes/ hierarchy is likely to become the standard for tracking foreign SCMs, as well as the location of Pull: targets for tracking remote branches in newly cloned repositories. Signed-off-by: Eric Wong <normalperson@yhbt.net> Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-03-09git-fmt-merge-msg cleanupLinus Torvalds
Since I've started using the "merge.summary" flag in my repo, my merge messages look nicer, but I dislike how I get notifications of merges within merges. So I'd suggest this trivial change.. Signed-off-by: Linus Torvalds <torvalds@osdl.org> Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-02-23PATCH: simplify calls to git programs in git-fmt-merge-msgAlex Riesen
It also makes it work on ActiveState Perl. Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-02-22Merge branch 'jc/perl'Junio C Hamano
* jc/perl: cvsimport: avoid open "-|" list form for Perl 5.6 svnimport: avoid open "-|" list form for Perl 5.6 send-email: avoid open "-|" list form for Perl 5.6 rerere: avoid open "-|" list form for Perl 5.6 fmt-merge-msg: avoid open "-|" list form for Perl 5.6
2006-02-21Fix fmt-merge-msg counting.Junio C Hamano
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-02-20fmt-merge-msg: avoid open "-|" list form for Perl 5.6Junio C Hamano
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-02-20fmt-merge-msg: do not add excess newline at the end.Junio C Hamano
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-02-19fmt-merge-msg: say which branch things were merged into unless 'master'Junio C Hamano
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-02-07fmt-merge-msg: show summary of what is merged.Junio C Hamano
In addition to the branch names, populate the log message with one-line description from actual commits that are being merged. This was prompted by Len's 12-way octopus. You need to have 'merge.summary' in the configuration file to enable it: $ git repo-config merge.summary yes Signed-off-by: Junio C Hamano <junkio@cox.net>
2005-09-28Fix default pull not to do an unintended Octopus.Junio C Hamano
The refspecs specified in the .git/remotes/<remote> on the "Pull: " lines are for fetching multiple heads in one go, but most of the time making an Octopus out of them is not what is wanted. Make git-fetch leave the marker in .git/FETCH_HEAD file so that later stages can tell which heads are for merging and which are not. Tom Prince made me realize how stupid the original behaviour was. Signed-off-by: Junio C Hamano <junkio@cox.net>
2005-09-23Prettyprint octopus merge message.Junio C Hamano
Including the current branch in the list of heads being merged was not a good idea, so drop it. And shorten the message by grouping branches and tags together to form a single line. Signed-off-by: Junio C Hamano <junkio@cox.net>