/external/chromium-trace/catapult/third_party/gsutil/third_party/retry-decorator/ |
Makefile | 5 git archive --prefix="$(name)-$(ver)/" master | bzip2 --best > "$(name)-$(ver).tar.bz2"
|
/external/selinux/scripts/ |
make-update | 23 git tag $PKG-$VERS 24 git archive --format=tar --prefix=$PKG-$VERS/ $PKG-$VERS | gzip > ../$DEST/$ARCHIVE
|
/external/dbus/ |
autogen.sh | 16 if [ -f .git/hooks/pre-commit.sample -a ! -f .git/hooks/pre-commit ] ; then 18 cp -av .git/hooks/pre-commit.sample .git/hooks/pre-commit 19 chmod -c +x .git/hooks/pre-commit
|
/external/deqp/scripts/src_util/ |
pre_commit.py | 31 def git(*args, **kwargs): function 32 return subprocess.check_output(['git'] + list(args), **kwargs) 35 output = git('diff', '--cached', '--name-only', '-z', '--diff-filter='+filter) 40 head = git('rev-parse', '--verify', 'HEAD', stderr=None) 62 allownonascii = git('config', '--get', '--bool', 'hooks.allownonascii') 77 git('diff-index', '--check', '--cached', against, stderr=None)
|
common.py | 90 def git (*args): function 91 process = subprocess.Popen(['git'] + list(args), cwd=getProjectPath(), stdout=subprocess.PIPE) 102 output = git('diff', '--cached', '--name-only', '-z', '--diff-filter=ACMR') 107 output = git('ls-files', '--cached', '-z')
|
/external/v8/tools/ |
v8-rolls.sh | 48 -s Chromium git hash to start printing V8 information about. 53 git show $1:DEPS | grep -n $DEPS_STRING | cut -d":" -f1 57 git blame -L$(v8_line $1),+1 $1 DEPS | grep $DEPS_STRING 69 git svn find-rev $1 73 msg=$(git log --format="%h %ci %ce" -1 $1)
|
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
|
/device/common/ |
generate-blob-lists.sh | 114 git add . 115 git commit -m "$(echo -e 'auto-generated blob list for '$DEVICENAME'\n\nBug: 4295425')" 119 git push $1/device/$MANUFACTURERNAME/$DEVICENAME.git HEAD:refs/for/$2/autoblobs 125 git commit --allow-empty -m "$(echo -e 'DO NOT SUBMIT - BROKEN BUILD\n\nBug: 4295425')" 129 git push $1/device/$MANUFACTURERNAME/$DEVICENAME.git HEAD:refs/for/$2/autoblobs
|
/development/tools/findunused/ |
removeunusedresources | 46 git rm $RESLINE > /dev/null 63 git add $RESLINE 68 git add $RESLINE 83 echo "When you're done, you can 'git commit' the change."
|
/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/skia/bin/ |
ac | 5 BRANCH=$(git branch | grep \* | cut -d" " -f 2) 15 git checkout $CLEAN 21 git checkout $BRANCH
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/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/harfbuzz_ng/ |
git.mk | 0 # git.mk, a small Makefile to autogenerate .gitignore files 13 GIT_MK_URL = https://raw.githubusercontent.com/behdad/git.mk/master/git.mk 16 # https://github.com/behdad/git.mk 18 # To use in your project, import this file in your git repo's toplevel, 19 # then do "make -f git.mk". This modifies all Makefile.am files in 20 # your project to -include git.mk. Remember to add that line to new 22 # "make -f git.mk". 38 # by this script (that is, if "git status" shows untracked files still), send 39 # me the output of "git status" as well as your Makefile.am and Makefile fo [all...] |
/build/blueprint/ |
.travis.install-ninja.sh | 3 # Version of ninja to build -- can be any git revision 15 git clone https://github.com/martine/ninja
|
/build/kati/ |
pack.sh | 23 git archive --prefix src/ master | tar -C out/kati -xvf -
|
/external/curl/scripts/ |
contributors.sh | 50 git log $start..HEAD | \
|
contrithanks.sh | 38 git log $start..HEAD | \
|
/external/guice/util/ |
publish-snapshot-on-commit.sh | 11 git clone --quiet --branch=travis https://github.com/google/guice travis > /dev/null
|
/external/mockito/ |
update_source.sh | 8 SOURCE="git://github.com/mockito/mockito.git" 27 git clone $SOURCE $working_dir/source
|
/external/skia/experimental/fiddle/ |
fiddle_test | 31 git clean -fxd cmake experimental/fiddle
|
/ndk/build/tools/ |
find-case-duplicates.sh | 19 # from the git repository. This is used to remove them when generating 26 ORG_FILES=`(cd $NDK_ROOT_DIR && git ls-files) | sort -f`
|
/external/ceres-solver/ |
import_ceres_upstream.sh | 20 git clone \ 25 declare -r commit="$(git log | head -1 | cut -d ' ' -f2)" 26 rm -rf .git
|
patch_from_client.sh | 19 git clone \ 24 declare -r commit="$(git log | head -1)" 25 rm -rf .git
|
/external/wpa_supplicant_8/wpa_supplicant/ |
Makefile | 32 # Add VERSION_STR postfix for builds from a git repository 33 ifeq ($(wildcard ../.git),../.git) 34 GITVER := $(shell git describe --dirty=+) [all...] |
/packages/apps/Camera2/ |
version.mk | 89 git_hash := $(shell git --git-dir $(LOCAL_PATH)/.git log -n 1 --pretty=format:%h)
|