HomeSort by relevance Sort by last modified time
    Searched refs:Git (Results 1 - 12 of 12) sorted by null

  /external/v8/tools/release/
git_recipes.py 32 ROLL_DEPS_GIT_SVN_ID_RE = re.compile('^git-svn-id: .*@([0-9]+) .*$')
43 # Key for the 'git-svn' ID metadata commit footer entry.
44 GIT_SVN_ID_FOOTER_KEY = 'git-svn-id'
46 # e.g., git-svn-id: https://v8.googlecode.com/svn/trunk@23117
102 return self.Git("status -s -uno", **kwargs).strip() == ""
106 return self.Git("branch", **kwargs)
111 self.Git(MakeArgs(["new-branch", name] + remote_args), **kwargs)
115 self.Git(MakeArgs(["branch -D", name]), **kwargs)
119 self.Git(MakeArgs(["reset --hard", name]), **kwargs)
122 self.Git(MakeArgs(["stash"]), **kwargs
    [all...]
auto_push.py 53 self.Git("fetch origin +refs/heads/lkgr:refs/heads/lkgr")
54 self["candidate"] = self.Git("show-ref -s refs/heads/lkgr").strip()
create_release.py 23 self.Git("fetch origin %s" % " ".join(fetchspecs))
162 self.Git("reset --hard origin/master")
163 self.Git("checkout -b work-branch %s" % self["push_hash"])
238 # In the normal case, the remote doesn't exist yet and git will fail.
242 self.Git("tag %s %s" % (self["version"], commit))
243 self.Git("push origin refs/tags/%s" % self["version"])
260 self.Git(cmd)
285 self.Git("gc")
298 help="The git commit ID to push (defaults to HEAD).")
common_includes.py 189 # from subscripts like git cl upload.
334 self.step.Git("fetch")
337 return self.step.Git("tag").strip().splitlines()
368 if self.step.Git("show-ref refs/remotes/origin/%s" % name).strip():
374 if self.step.Git("show-ref refs/remotes/branch-heads/%s" % name).strip():
386 self.step.Git("fetch")
390 print("The commit has not replicated to git. Waiting for %s seconds." %
395 "git updater is lagging behind?")
397 self.step.Git("tag %s %s" % (tag, commit))
398 self.step.Git("push origin %s" % tag
    [all...]
auto_roll.py 32 self.Git("fetch origin +refs/tags/*:refs/tags/*")
189 help="The git commit ID of the last rolled version. "
push_to_candidates.py 72 self.Die("Could not determine the git hash for the push.")
208 # Instead of relying on "git rebase -i", we'll just create a diff, because
276 self.Git("fetch")
358 help=("The git commit ID of the last master "
362 help="The git commit ID of the last candidates push.")
364 help="The git commit ID to push (defaults to HEAD).")
test_scripts.py 468 self.Expect([Cmd("git --version", "git version 1.2.3"),
469 Cmd("git dummy", "")])
470 self.assertEquals("git version 1.2.3", self.MakeStep().Git("--version"))
471 self.assertEquals("", self.MakeStep().Git("dummy"))
475 Cmd("git status -s -uno", ""),
476 Cmd("git checkout -f origin/master", ""),
477 Cmd("git fetch", ""),
478 Cmd("git branch", " branch1\n* %s" % TEST_CONFIG["BRANCHNAME"])
    [all...]
  /external/libopus/win32/
genversion.bat 5 for /f %%v in ('git --git-dir="%~dp0..\.git" describe --tags --match "v*"') do set version=%%v
11 echo Git cannot be found, nor can version.mk. Generating unknown version.
  /external/smali/
build.gradle 39 def git = org.eclipse.jgit.api.Git.open(file('.'))
40 def head = git.getRepository().getRef('HEAD')
43 if (!git.status().call().clean) {
172 connection 'scm:git:git://github.com/JesusFreke/smali.git'
173 developerConnection 'scm:git:git@github.com:JesusFreke/smali.git'
    [all...]
  /external/smali/smalidea/
build.gradle 52 def git = org.eclipse.jgit.api.Git.open(file('..'))
53 def head = git.getRepository().getRef('HEAD')
56 if (!git.status().call().clean) {
  /external/v8/tools/
v8-info.sh 49 Fetches V8 revision information from a git-svn checkout.
56 Output format: [Git hash] [SVN revision] [V8 version]
76 git for-each-ref --format="%(objectname) %(refname:short)" refs/remotes/svn
84 git log --format="%h %ci %ce %s" -1 $1
96 git svn log -1 --oneline $1 | cut -d" " -f1
109 git svn find-rev $2 svn/$1
113 cd $(git rev-parse --show-toplevel)
114 rev=$(git show $1:$VERSION \
123 git cherry -v svn/trunk svn/$1 | while read merge; do
  /external/vulkan-validation-layers/
update_external_sources.bat 92 REM git is required for all paths
93 for %%X in (git.exe) do (set FOUND=%%~$PATH:X)
96 echo git.exe not found
97 echo Git for Windows can be downloaded here: https://git-scm.com/download/win
98 echo Install and ensure git.exe makes it into your PATH
204 git clone https://github.com/KhronosGroup/glslang.git .
205 git checkout %GLSLANG_REVISION%
216 git fetch --all
    [all...]

Completed in 118 milliseconds