* Stefano Lattarini wrote on Sat, Aug 21, 2010 at 07:40:17PM CEST: > This problem indicates that `git --dry-run' is not enough for me to > check the correctness of the push; do you know if there is a way to > show which commits are added to which branches during a push > (while still in `dry-run' mode, obviously)?
For such cases, I find 'git --all' output quite instructive, usually with a view strictly sorted by date. Or, if you don't have graphical output, 'git log --graph' plus other options (like --oneline) may be helpful. Cheers, Ralf