/external/libcap/ |
Makefile | 36 git tag -u D41A6DF2 -s libcap-$(VERSION).$(MINOR) 37 git tag -u E2CCF3F4 -s libcap-korg-$(VERSION).$(MINOR)
|
/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 194 if test -d .git
|
/external/ltp/testscripts/build/ |
test_install_out_of_build_tree.sh | 31 pull_scm git "$tmp_srcdir"
|
test_out_of_build_tree.sh | 31 pull_scm git "$tmp_srcdir"
|
build_test_function.sh | 70 # Pull from git. 73 git archive master \ 74 --remote=git://ltp.git.sourceforge.net/gitroot/ltp/$GIT_REPO . | tar -xf - 81 # 1 - pull method (currently only cvs is supported, but git may be supported
|
/external/protobuf/jenkins/ |
build_and_run_docker.sh | 39 -w /var/local/git/protobuf \ 47 docker cp "$CONTAINER_NAME:/var/local/git/protobuf/$OUTPUT_DIR" "$git_root" || FAILED="true"
|
/external/skia/third_party/harfbuzz/ |
README | 41 git clean -fxd
|
/external/syslinux/efi/ |
clean-gnu-efi.sh | 26 git submodule update --init
|
build-gnu-efi.sh | 32 git submodule update --init
|
/prebuilts/checkstyle/ |
tests.py | 76 checkstyle.git.repository_root = mock_repository_root 77 checkstyle.git.last_commit = mock_last_commit 80 # Skip checks for explicit git commit. 111 checkstyle.git.modified_files = mock_modified_files_good 119 checkstyle.git.modified_files = mock_modified_files_uncommitted 126 checkstyle.git.modified_files = mock_modified_files_uncommitted 134 checkstyle.git.modified_files = mock_modified_files_non_java 142 checkstyle.git.modified_files = mock_modified_files_untracked 149 checkstyle.git.modified_files = mock_modified_files_good
|
/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))
|
/external/lz4/tests/ |
test-lz4-versions.py | 18 repo_url = 'https://github.com/lz4/lz4.git' 21 git_cmd = 'git' 40 def git(args, pipe=True): function 44 stdout, stderr = git(['tag', '-l', 'r[0-9][0-9][0-9]']) 46 stdout, stderr = git(['tag', '-l', 'v[1-9].[0-9].[0-9]']) 65 git(['clone', repo_url, clone_dir]) 85 git(['--work-tree=' + r_dir, 'checkout', tag, '--', '.'], False)
|
/tools/repohooks/ |
pre-upload.py | 43 import rh.git 147 os.path.join(rh.git.find_repo_root(), '.repo', 'manifests'), 149 rh.git.find_repo_root(), 152 # Load the config for this git repo. 174 # If the commit is not at the top of the stack, git operations might be 238 remote = rh.git.get_upstream_remote() 239 upstream_branch = rh.git.get_upstream_branch() 245 'REPO_LREV': rh.git.get_commit_for_ref(upstream_branch), 249 'REPO_RREV': rh.git.get_remote_revision(upstream_branch, remote), 256 commit_list = rh.git.get_commits [all...] |
/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/toolchain-utils/toolchain_utils_githooks/ |
pre-push.real | 36 files=$(git show --pretty="format:" --name-only $range)
|
/external/libnl/ |
configure.ac | 17 m4_define([libnl_git_sha], [m4_esyscmd([ ( [ -d ./.git/ ] && [ "$(readlink -f ./.git/)" = "$(readlink -f "$(git rev-parse --git-dir 2>/dev/null)" 2>/dev/null)" ] && git rev-parse --verify -q HEAD 2>/dev/null ) || true ])])
|
/sdk/build/ |
windows_sdk_tools.mk | 4 # to device which tools we want to build from the sdk.git project.
|
/external/linux-kselftest/tools/testing/selftests/rcutorture/bin/ |
kvm.sh | 295 if test -d .git 297 git status >> $resdir/$ds/testid.txt 298 git rev-parse HEAD >> $resdir/$ds/testid.txt 299 if ! git diff HEAD > $T/git-diff 2>&1 301 cp $T/git-diff $resdir/$ds
|
/external/skia/infra/bots/recipe_modules/core/ |
api.py | 41 git = 'git.bat' 43 git = 'git' 45 self.m.step('git remote set-url', 46 cmd=[git, 'remote', 'set-url', 'origin', repo.url], 48 self.m.step('git fetch', 49 cmd=[git, 'fetch'], 51 self.m.step('git reset', 52 cmd=[git, 'reset', '--hard', repo.revision] [all...] |
/external/skia/infra/bots/ |
recipes.py | 60 engine_revision (str) - the git revision for the engine to get. 199 git = 'git.bat' 201 git = 'git' 224 _subprocess_check_call([git, 'clone', engine_url, engine_root_path]) 227 [git, 'rev-parse', '--verify', '%s^{commit}' % engine_revision], 230 _subprocess_check_call([git, 'fetch'], cwd=engine_root_path) 232 [git, 'checkout', '--quiet', engine_revision], cwd=engine_root_path)
|
/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) { 171 connection 'scm:git:git://github.com/JesusFreke/smali.git' 172 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/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 206 git clone https://github.com/KhronosGroup/glslang.git . 207 git checkout %GLSLANG_REVISION% 218 git fetch --al [all...] |
/bionic/libc/kernel/tools/ |
generate_uapi_headers.sh | 28 ### Automatically create a temporary git repository and check out the 212 git clone https://android.googlesource.com/kernel/common.git 214 git checkout "${KERNEL_VERSION}"
|