Searched refs:git (Results 1 - 25 of 125) sorted by relevance

12345

/external/llvm/utils/git-svn/
H A Dgit-svnup3 if [ -n "`git status -uno -s --porcelain`" ]; then
5 git status -uno
9 git fetch
10 OLD_BRANCH=$(git rev-parse --abbrev-ref HEAD)
11 git checkout master 2> /dev/null
12 git svn rebase -l
13 git checkout $OLD_BRANCH 2> /dev/null
H A Dgit-svnrevert9 if [ -n "$(git status -uno -s --porcelain)" ]; then
11 git status -uno
17 SVN_REVISION=$(git svn find-rev "$COMMIT")
24 ONE_LINE_MSG=$(git log --oneline $COMMIT -1 | cut -f2- -d " ")
27 git revert --no-commit $COMMIT 2>/dev/null
30 git reset --hard HEAD
34 # Create a template in our .git directory.
35 TEMPLATE="`git rev-parse --git-dir`/git
[all...]
/external/chromium_org/tools/git/
H A Dpost-merge7 source $(dirname ${script:-$0})/git-utils.sh
9 if git diff-tree ORIG_HEAD HEAD | grep -qs $'\tDEPS$'; then
H A Dpost-checkout7 source $(dirname ${script:-$0})/git-utils.sh
14 if ! git diff-index --quiet HEAD $(git rev-parse --show-cdup)DEPS; then
18 if git diff-tree $old_ref $new_ref | grep -qs $'\tDEPS$'; then
/external/llvm/utils/
H A DGetRepositoryPath19 elif [ -f .git/svn/.metadata ]; then
20 git svn info | grep 'URL:' | cut -d: -f2-
21 elif [ -d .git ]; then
22 git remote -v | grep 'fetch' | awk '{ print $2 }' | head -n1
H A DGetSourceVersion19 elif [ -f .git/svn/.metadata ]; then
20 git svn info | grep 'Revision:' | cut -d: -f2-
21 elif [ -d .git ]; then
22 git log -1 --pretty=format:%H
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/scm/
H A D__init__.py5 from .git import Git, AmbiguousCommitError
/external/chromium_org/third_party/libvpx/source/libvpx/tools/
H A Dauthor_first_release.sh7 ## If the TAGS arguments are unspecified, all tags reported by `git tag`
10 tags=${@:-$(git tag)}
12 git shortlog -n -e -s $tag |
H A Dgen_authors.sh6 # This file is automatically generated from the git commit history
9 $(git log --pretty=format:"%aN <%aE>" | sort | uniq)
/external/libvpx/libvpx/tools/
H A Dauthor_first_release.sh7 ## If the TAGS arguments are unspecified, all tags reported by `git tag`
10 tags=${@:-$(git tag)}
12 git shortlog -n -e -s $tag |
H A Dgen_authors.sh6 # This file is automatically generated from the git commit history
9 $(git log --pretty=format:"%aN <%aE>" | sort | uniq)
/external/okhttp/
H A Ddeploy_website.sh5 REPO="git@github.com:square/okhttp.git"
15 git clone $REPO $DIR
21 git checkout -t origin/gh-pages
35 # Stage all files in git and create a commit
36 git add .
37 git add -u
38 git commit -m "Website at $(date)"
41 git push origin gh-pages
/external/chromium_org/build/
H A Dtree_truth.sh12 oneline=$(cd $1 && git log -1 $2 --format='%H' 2>/dev/null)
21 ( cd $1 && git log HEAD -n1 --format='%H' | cat )
28 ( cd $1 && git tag -f $2 )
35 ( cd $1 && git tag -d $2 )
42 local sh=$(cd $1 && git log --pretty=oneline -n 3 | tail -1 | awk '{print $1}')
43 ( cd $1 && git tag -f $2 $sh )
62 echo "NOTE: git tag was not found so we have no baseline."
64 ( cd $1 && git log -n 10 --stat | cat)
67 ( cd $1 && git log -n 500 $2..HEAD --stat | cat)
92 (cd $CHROME_SRC/../$p && git lo
[all...]
/external/chromium_org/third_party/cython/src/
H A DMakefile2 REPO = git://github.com/cython/cython.git
10 .git: .gitrev
12 git clone -n $(REPO) $(TMPDIR)
13 cd $(TMPDIR) && git reset -q "$(shell cat .gitrev)"
14 mv $(TMPDIR)/.git .
16 git ls-files -d | xargs git checkout --
18 repo: .git
/external/chromium_org/third_party/libvpx/
H A Dupdate_libvpx.sh7 # This tool is used to update libvpx source code with the latest git
21 # 3. git
25 # Location for the remote git repository.
26 GIT_REPO="http://git.chromium.org/webm/libvpx.git"
49 # Make sure git doesn't mess up with svn.
52 # Start a local git repo.
53 git init
54 git add .
55 git commi
[all...]
/external/skia/tools/
H A Dgit_utils.py16 """Class to manage git branches.
21 Assumes current working directory is a git repository.
43 OSError: the git executable disappeared.
44 subprocess.CalledProcessError: git returned unexpected status.
46 isn't clean on exit, or git can't be found.
84 git, vsp = self._git, self._vsp
95 vsp.check_call([git, 'stash', 'save'])
98 [git, 'checkout', '-q', '-b',
102 git, vsp = self._git, self._vsp
105 status = vsp.check_output([git, 'statu
[all...]
H A Dgit-skia-verify13 # As the name of this script tells, it only works for git repository. :)
18 # $ git skia-verify [sha1-to-compare-default-is-HEAD^]
48 git diff --exit-code > /dev/null
54 git diff --cached --exit-code > /dev/null
65 PREVIOUS_BRANCH=`git branch --no-color | grep "^*" | awk '{ print $2}'`
79 git checkout --detach "$REVISION"
86 git checkout "$PREVIOUS_BRANCH"
92 git checkout "$PREVIOUS_BRANCH"
/external/fio/
H A DFIO-VERSION-GEN10 # then try git-describe, then default.
14 elif test -d .git -o -f .git &&
15 VN=`git describe --match "fio-[0-9]*" --abbrev=4 HEAD 2>/dev/null` &&
19 git update-index -q --refresh
20 test -z "`git diff-index --name-only HEAD --`" ||
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A DPERF-VERSION-GEN13 # First check if there is a .git to get the version from git describe
18 if test -d ../../.git -o -f ../../.git
20 TAG=$(git describe --abbrev=0 --match "v[0-9].[0-9]*" 2>/dev/null )
21 CID=$(git log -1 --abbrev=4 --pretty=format:"%h" 2>/dev/null) && CID="-g$CID"
/external/strace/
H A Dmake-dist12 git clone -q -n -s .git "$distdir"
15 git checkout -f "$tag"
17 ./git-set-file-times
H A Dgit-version-gen20 # This script is derived from GIT-VERSION-GEN from GIT: http://git.or.cz/.
22 # - from a git repository in which the "git describe" command below
24 # - from a non-git-repo directory containing a .tarball-version file, which
25 # presumes this script is invoked like "./git-version-gen .tarball-version".
32 # the last time autoconf was run, and used by git-version-gen. Must not
33 # be present in either $(srcdir) or $(builddir) for git-version-gen to
58 # m4_esyscmd([build-aux/git-version-gen .tarball-version]),
75 version="git-version-gen $scriptversion
88 --prefix prefix of git tag
[all...]
/external/chromium_org/third_party/skia/tools/
H A Dgit-skia-verify13 # As the name of this script tells, it only works for git repository. :)
18 # $ git skia-verify [sha1-to-compare-default-is-HEAD^]
48 git diff --exit-code > /dev/null
54 git diff --cached --exit-code > /dev/null
65 PREVIOUS_BRANCH=`git branch --no-color | grep "^*" | awk '{ print $2}'`
79 git checkout --detach "$REVISION"
86 git checkout "$PREVIOUS_BRANCH"
92 git checkout "$PREVIOUS_BRANCH"
H A Dgit-sync-deps8 """Parse a DEPS file and git checkout all of the dependencies.
14 GIT_EXECUTABLE: path to "git" binary; if unset, will look for one of
15 ['git', 'git.exe', 'git.bat'] in your default path.
25 git config sync-deps.disable true
29 git config --unset sync-deps.disable
40 """Find the git executable.
46 searchlist = ['git', 'git
[all...]
/external/chromium_org/third_party/closure_compiler/
H A Dbump_compiler_version20 git clone https://github.com/google/closure-compiler.git
/external/chromium_org/third_party/mesa/src/bin/
H A Dshortlog_mesa.sh9 git shortlog $* | while read l

Completed in 879 milliseconds

12345