Lines Matching refs:target
13 the target branch).
279 the target branch).
285 the target branch checked out.
312 def list_merges(some_hash, target, *options):
313 """List merge commits from some_hash to target.
319 '..'.join([some_hash, target])])
328 target = 'HEAD'
329 # List the merges from some_hash to the target in two ways.
331 # some_hash and ancestors of the target.
332 ancestry = frozenset(cls.list_merges(some_hash, target,
335 # on the target branch. We want it in reverse order (oldest first).
336 first_parents = cls.list_merges(some_hash, target,
339 # and directly on the target branch. That's the place where some_hash
340 # was merged on the target branch. See