liyujie
2025-08-28 786ff4f4ca2374bdd9177f2e24b503d43e7a3b93
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# Copyright 2017 The PDFium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
 
"""Classes for dealing with git."""
 
import subprocess
 
from common import RunCommandPropagateErr
 
 
class GitHelper(object):
  """Issues git commands. Stateful."""
 
  def __init__(self):
    self.stashed = 0
 
  def Checkout(self, branch):
    """Checks out a branch."""
    RunCommandPropagateErr(['git', 'checkout', branch], exit_status_on_error=1)
 
  def FetchOriginMaster(self):
    """Fetches new changes on origin/master."""
    RunCommandPropagateErr(['git', 'fetch', 'origin', 'master'],
                           exit_status_on_error=1)
 
  def StashPush(self):
    """Stashes uncommitted changes."""
    output = RunCommandPropagateErr(['git', 'stash', '--include-untracked'],
                                    exit_status_on_error=1)
    if 'No local changes to save' in output:
      return False
 
    self.stashed += 1
    return True
 
  def StashPopAll(self):
    """Pops as many changes as this instance stashed."""
    while self.stashed > 0:
      RunCommandPropagateErr(['git', 'stash', 'pop'], exit_status_on_error=1)
      self.stashed -= 1
 
  def GetCurrentBranchName(self):
    """Returns a string with the current branch name."""
    return RunCommandPropagateErr(
        ['git', 'rev-parse', '--abbrev-ref', 'HEAD'],
        exit_status_on_error=1).strip()
 
  def GetCurrentBranchHash(self):
    return RunCommandPropagateErr(
        ['git', 'rev-parse', 'HEAD'], exit_status_on_error=1).strip()
 
  def IsCurrentBranchClean(self):
    output = RunCommandPropagateErr(['git', 'status', '--porcelain'],
                                    exit_status_on_error=1)
    return not output
 
  def BranchExists(self, branch_name):
    """Return whether a branch with the given name exists."""
    output = RunCommandPropagateErr(['git', 'rev-parse', '--verify',
                                     branch_name])
    return output is not None
 
  def CloneLocal(self, source_repo, new_repo):
    RunCommandPropagateErr(['git', 'clone', source_repo, new_repo],
                           exit_status_on_error=1)