Lines Matching full:upstream
63 pipe = [LogCmd('@{upstream}..', oneline=True),
86 """Tries to guess the upstream for a branch
89 upstream. It does this by looking for the first commit where
98 Name of upstream branch (e.g. 'upstream/master') or None if none
112 return name, "Guessing upstream as '%s'" % name
113 return None, "Cannot find a suitable upstream for branch '%s'" % branch
116 """Returns the name of the upstream for a branch
124 Name of upstream branch (e.g. 'upstream/master') or None if none
133 upstream, msg = GuessUpstream(git_dir, branch)
134 return upstream, msg
142 raise ValueError("Cannot determine upstream branch for branch "
153 Expression in the form 'upstream..branch' which can be used to
156 upstream, msg = GetUpstream(git_dir, branch)
157 if not upstream:
159 rstr = '%s%s..%s' % (upstream, '~' if include_upstream else '', branch)