| /device/generic/goldfish/qemud/ |
| Android.mk | 4 # development.git/tools/emulator/. The following test is to ensure
|
| /external/bison/build-aux/ |
| do-release-commit-and-tag | 2 # In a git/autoconf/automake-enabled project with a NEWS file and a version- 43 - you use git for version-control 86 branch=$(git branch | sed -ne '/^\* /{s///;p;q;}') 139 case $(git diff-index --name-only HEAD) in 145 curr_br=$(git rev-parse --symbolic-full-name HEAD) 169 | git commit -F - -a || die 'git commit failed' 170 git tag -s -m "$pkg $ver" v$ver HEAD || die 'git tag failed'
|
| vc-list-files | 68 if test -d .git; then 72 # Ignore git symlinks - either they point into the tree, in which case 76 eval exec git ls-tree -r 'HEAD:"$dir"' \
|
| /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/bot/ |
| commitannouncer.py | 31 from webkitpy.common.checkout.scm.git import Git 45 self.git = Git(cwd=tool.scm().checkout_root, filesystem=tool.filesystem, executive=tool.executive) 54 self.last_commit = self.git.latest_git_commit() 63 new_commits = self.git.git_commits_since(self.last_commit) 98 if not self.git.is_cleanly_tracking_remote_master(): 104 self.git.ensure_cleanly_tracking_remote_master() 123 self.git.pull() 145 return self._format_commit_detail(self.git.git_commit_detail(commit, self._commit_detail_format) [all...] |
| /external/chromium_org/third_party/binutils/ |
| upload.sh | 60 git add -f "${BINUTILS_TAR_BZ2}.sha1" 65 echo "# git commit"
|
| /external/libpng/ |
| autogen.sh | 6 # The first time this is run on a GIT checkout the only files that exist are 15 # It is *probably* OK to update the files on a GIT checkout, because they have 39 if test -d .git 59 echo " are not using a GIT distribution, then you have given an" 71 # to be a GIT version and the local autotools must be used. If present this 193 if test -d .git
|
| /external/chromium_org/native_client_sdk/src/doc/ |
| io2014.rst | 68 Git Setup 72 `git <http://en.wikipedia.org/wiki/Git_(software)>`_. 73 In order to commit to a git repository, 80 git config --global user.name "John Doe" 81 git config --global user.email johndoe@example.com 115 Let's use git (a revision control program) to track our changes. 119 $ git init 123 $ git add . 127 $ git commit -m "imported voronoi demo" 147 $ git dif [all...] |
| /external/bison/ |
| 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))
|
| Makefile.am | 42 # See comments in build-aux/git-version-gen. However, we make .version depend 69 $(AM_V_GEN)if test -d $(srcdir)/.git; then \ 76 --amend=$(srcdir)/build-aux/git-log-fix \
|
| /external/vixl/tools/ |
| presubmit.py | 36 import git namespace 193 if not args.nolint and not git.is_git_repository_root(): 194 print 'WARNING: This is not a Git repository. The linter will not run.' 209 tracked_files = git.get_tracked_files().split() 244 if git.is_git_repository_root(): 245 untracked_files = git.get_untracked_files()
|
| /bionic/libc/kernel/tools/ |
| generate_uapi_headers.sh | 28 ### Automatically create a temporary git repository and check out the 161 git clone https://android.googlesource.com/kernel/common.git 163 git checkout "${KERNEL_VERSION}"
|
| /external/ceres-solver/scripts/ |
| make_release | 56 GIT_COMMIT=$(git log -1 HEAD |grep commit) 93 git checkout-index -f -a --prefix=$TMP/
|
| /external/chromium_org/tools/git/ |
| mass-rename.py | 8 a rename. Expects "git diff --cached -M" to list a bunch of renames. 11 1) git mv foo1 bar1; git mv foo2 bar2; etc. 12 2) *without committing*, ./tools/git/mass-rename.py 13 3) look at git diff (without --cached) to see what the damage is 26 popen = subprocess.Popen('git diff --cached --raw -M',
|
| /external/chromium_org/tools/measure_page_load_time/ie_bho/ |
| MeasurePageLoadTimeBHO.cpp | 45 CComGITPtr<IWebBrowser2> git(m_spWebBrowser); 46 m_dwCookie = git.Detach(); 101 CComGITPtr<IWebBrowser2> git(m_dwCookie); 103 git.CopyTo(&browser);
|
| /external/dhcpcd/mk/ |
| cc.mk | 12 # Try and use some good cc flags if we're building from git 18 _CC_FLAGS_SH= if ! test -d .git; then echo ""; else for f in ${_CCFLAGS}; do \
|
| dist.mk | 21 git archive --prefix=${DISTPREFIX}/ ${GITREF} | bzip2 > ${DISTFILE}
|
| /external/iputils/ |
| Makefile | 117 LASTTAG:=$(shell git describe HEAD | sed -e 's/-.*//') 240 @git log --no-merges $(LASTTAG).. | git shortlog >> RELNOTES.NEW 249 @git commit -a -m "iputils-$(TAG)" 250 @git tag -s -m "iputils-$(TAG)" $(TAG) 251 @git archive --format=tar --prefix=iputils-$(TAG)/ $(TAG) | bzip2 -9 > ../iputils-$(TAG).tar.bz2
|
| /external/nanopb-c/tools/ |
| make_mac_package.sh | 11 VERSION=`git describe --always`-macosx-x86 18 git archive HEAD | tar x -C $DEST
|
| /external/chromium_org/third_party/openssl/ |
| import_from_android.sh | 169 1) Download the Android sources from the AOSP git servers. 189 --aosp-git=<url> Change git source for Android repository. 191 --aosp-commit=<name> Specify git commit or branch name [$ANDROID_OPENSSL_GIT_COMMIT] 215 --aosp-git=*) 216 ANDROID_OPENSSL_GIT_SOURCE=${OPT#--aosp-git=} 287 run git clone $GIT_CLONE_FLAGS $ANDROID_OPENSSL_GIT_SOURCE . 288 run git checkout $GIT_CHECKOUT_FLAGS $ANDROID_OPENSSL_GIT_COMMIT 289 run rm -rf .git
|
| /external/mesa3d/src/mesa/ |
| Android.gen.mk | 114 @echo "GIT-SHA1: $(PRIVATE_MODULE) <= git" 116 $(hide) if which git > /dev/null; then \ 117 git --git-dir $(PRIVATE_PATH)/../../.git log -n 1 --oneline | \ 118 sed 's/^\([^ ]*\) .*/#define MESA_GIT_SHA1 "git-\1"/' \
|
| /external/chromium_org/third_party/libvpx/source/libvpx/build/make/ |
| version.sh | 27 if [ -d "${source_path}/.git" ]; then 28 # Source Path is a git working copy. Check for local modifications. 29 export GIT_DIR="${source_path}/.git" 30 git_version_id=`git describe --match=v[0-9]* 2>/dev/null`
|
| /external/chromium_org/tools/ |
| ipc_messages_log.py | 19 Chromium is checked out using git. 76 pipe = subprocess.Popen(['git', 'ls-files', '--', '*_messages.h'],
|
| /external/chromium_org/v8/tools/ |
| test-push-to-trunk.sh | 60 EXP[0]="git status -s -uno" 62 EXP[1]="git status -s -b -uno" 64 EXP[2]="git svn fetch" 66 EXP[3]="git branch" 68 EXP[4]="git checkout -b prepare-push-temporary-branch-created-by-script" 70 EXP[5]="git branch" 72 EXP[6]="git branch" 74 EXP[7]="git checkout -b prepare-push svn/bleeding_edge" 76 EXP[8]="git log -1 --format=%H ChangeLog" 78 EXP[9]="git log -1 hash1 184 git() { function [all...] |
| /prebuilts/devtools/ |
| update_jars.sh | 33 echo " -m: do NOT generate a .git/MERGE_MSG" 34 echo " -u: detect and git-revert unchanged JAR files" 52 local SHA1=$( cd ../../tools/$repo ; git show-ref --head --hash HEAD ) 60 local dst=.git/MERGE_MSG
|
| /sdk/build/ |
| windows_sdk_tools.mk | 4 # to device which tools we want to build from the sdk.git project.
|