Home | History | Annotate | Download | only in tools

Lines Matching refs:git

78                     ' to upload. For instance, if you use the old git workflow,'
102 prnt_subprocess.check_call(['git', 'clean', '-d', '-f'])
103 prnt_subprocess.call(['git', 'rebase', '--abort'])
105 old_branch = scm.GIT.GetBranch(root_dir)
114 prnt_subprocess.check_call(['git', 'checkout', options.upstream, '-f'])
115 prnt_subprocess.call(['git', 'branch', '-D', old_branch])
121 prnt_subprocess.check_call(['git', 'fetch', 'origin'])
122 prnt_subprocess.call(['git', 'svn', 'fetch'])
123 branch_cmd = ['git', 'checkout', '-b', new_branch, options.upstream]
142 prnt_subprocess.check_output(['git', 'commit', '-m', commit_msg, 'DEPS'])
143 prnt_subprocess.check_call(['git', 'diff', '--no-ext-diff',
145 upload_cmd = ['git', 'cl', 'upload', '--bypass-hooks']
155 prnt_subprocess.check_output(['git', 'checkout', old_branch])
156 prnt_subprocess.check_output(['git', 'branch', '-D', new_branch])