| /src/external/apache2/llvm/dist/llvm/utils/gn/build/ |
| sync_source_lists_from_cmake.py | 12 If --write is passed, tries to write modified .gn files and adds one git 14 of HEAD is unspecified; run `git reset --hard origin/master` if this happens. 54 # Use shell=True on Windows in case git is a bat file. 55 def git(args): subprocess.check_call(['git'] + args, shell=os.name == 'nt') function in function:sync_source_lists 57 return subprocess.check_output(['git'] + args, shell=os.name == 'nt', 118 git(['add', gn_file]) 127 git(['commit', '-m', '[gn build] Port %s' % rev])
|
| /src/external/apache2/llvm/dist/llvm/utils/git/ |
| pre-push.py | 3 # ======- pre-push - LLVM Git Help Integration ---------*- python -*--========# 12 pre-push git hook integration 18 ln -sf ../../llvm/utils/git/pre-push.py .git/hooks/pre-push 20 From the git doc: 22 The pre-push hook runs during git push, after the remote refs have been 130 def git(*cmd, **kwargs): function 131 return shell(['git'] + list(cmd), **kwargs) 135 commits = git('rev-list', range).splitlines() 162 # Check that the remote commit exists, otherwise let git procee [all...] |
| /src/external/gpl3/autoconf/dist/ |
| GNUmakefile | 47 _have-git-version-gen := \ 48 $(shell test -f $(srcdir)/$(_build-aux)/git-version-gen && echo yes) 49 ifeq ($(_have-git-version-gen)0,yes$(MAKELEVEL)) 55 && $(_build-aux)/git-version-gen \ 57 $(git-version-gen-tag-sed-script))
|
| /src/external/bsd/zstd/dist/tests/ |
| test-zstd-versions.py | 23 repo_url = 'https://github.com/facebook/zstd.git' 27 git_cmd = 'git' 78 def git(args, pipe=True): function 83 stdout, stderr = git(['tag', '-l', 'v[0-9].[0-9].[0-9]']) 231 git(['clone', repo_url, clone_dir]) 254 git(['--work-tree=' + r_dir, 'checkout', tag, '--', '.'], False)
|
| /src/external/mpl/bind/dist/contrib/gitchangelog/ |
| gitchangelog.py | 334 Run this command in a git repository to output a formatted changelog 343 - in git configuration: ``git config gitchangelog.rc-path`` 344 - as '.%(exname)s.rc' in the root of the current git repository 858 ## git information access 868 def git(self): member in class:SubGitObjectMixin 870 return self._repos.git 896 r"""Represent a Git Commit and expose through its attribute many information 905 >>> repos.git = Mock("gitRepos.git") 1341 def git(self): member in class:GitRepos [all...] |