I'm using a simple shell script `git-trac-merge` for it, but it would be nice to have something like this as a built-in command. ``` for a in $*; do git trac fetch $a && git merge --no-ff -m "Merge #$a" FETCH_HEAD; done ```
I'm using a simple shell script
git-trac-mergefor it, but it would be nice to have something like this as a built-in command.