On segunda-feira, 22 de fevereiro de 2016 11:05:24 PST Welbourne Edward wrote: > I'm sure there's a specific command for asking git whether a given > branch contains a given commit: but I can't remember it. > Still, git log dev..3726c4673 reveals that it is indeed not yet in dev.
That is actually the correct command to do what you asked. Using git branch --contains is more expensive, as it will check whether all branches, not just dev, contain it. -- Thiago Macieira - thiago.macieira (AT) intel.com Software Architect - Intel Open Source Technology Center _______________________________________________ Development mailing list [email protected] http://lists.qt-project.org/mailman/listinfo/development
