Lines Matching defs:branch
102 """Return the current git branch"""
104 p = git('branch')
108 if elt.endswith('(no branch)'):
112 def git_parent_branch(branch):
113 """Return the parent of the current git branch.
115 If this branch tracks a remote branch, return the remote branch which is
118 if not branch:
125 sys.stderr.write("Failed finding git parent branch\n")
129 # Git 1.7 will leave a ' ' trailing any non-tracking branch
132 if local == branch:
137 """Return a list of any checkin comments on this git branch"""
148 """Return the set of files which have ever changed on this branch.
178 directory, of any file changed on this branch (limited to 'paths' if
333 sys.stderr.write("Usage: %s [-b branch] [path...]\n" % cmd)