Home
last modified time | relevance | path

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

12345678910>>...12

/third_party/libbpf/scripts/
H A Dsync-kernel.sh64 LIBBPF_TREE_FILTER+="git mv -kf ${p} __libbpf/${PATH_MAP[${p}]} && "$'\\\n'
66 LIBBPF_TREE_FILTER+="git rm --ignore-unmatch -f __libbpf/src/{Makefile,Build,test_libbpf.c,.gitignore} >/dev/null"
77 git log -n1 --pretty='%h ("%s")' $1
93 git show --pretty='("%s")|%aI|%b' --shortstat $ref -- "${@-.}" | tr '\n' '|'
112 new_commits=$(git rev-list --no-merges --topo-order --reverse ${baseline_tag}..${tip_tag} -- "${LIBBPF_PATHS[@]}")
144 if ! git cherry-pick ${new_commit} &>/dev/null; then
146 libbpf_conflict_cnt=$(git diff --name-only --diff-filter=U -- "${LIBBPF_PATHS[@]}" | wc -l)
147 conflict_cnt=$(git diff --name-only | wc -l)
154 git cherry-pick --abort
158 git ad
[all...]
/third_party/skia/tools/
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 git in
25 git config sync-deps.disable true
29 git config --unset sync-deps.disable
40 """Find the git executable.
46 searchlist = ['git']
50 for git in searchlist:
52 subprocess.call([git, '--version'], stdout=devnull)
55 return git
[all...]
/third_party/node/tools/dep_updaters/
H A Dupdate-googletest.sh10 NEW_UPSTREAM_SHA1=$(git ls-remote "https://github.com/google/googletest.git" HEAD | awk '{print $1}')
15 git remote add googletest-upstream https://github.com/google/googletest.git
16 git fetch googletest-upstream "$NEW_UPSTREAM_SHA1"
17 git remote remove googletest-upstream
20 git diff HEAD:deps/googletest/LICENSE "$NEW_UPSTREAM_SHA1:LICENSE"
21 git diff-tree HEAD:deps/googletest/include "$NEW_UPSTREAM_SHA1:googletest/include"
22 git diff-tree HEAD:deps/googletest/src "$NEW_UPSTREAM_SHA1:googletest/src"
38 LAST_CHANGE_DATE=$(git lo
[all...]
/third_party/skia/third_party/freetype2/
H A Droll-freetype.sh3 FT_GIT_REPO=https://chromium.googlesource.com/chromium/src/third_party/freetype2.git
10 FT_PREVIOUS_REV=$(git grep "${FT_GIT_REPO}" HEAD~1 -- DEPS | sed 's!.*'${FT_GIT_REPO}'@\([[:xdigit:]]\{40\}\).*!\1!')
15 git -C ${FT_GIT_DIR} fetch &&
16 FT_NEXT_REV=$(git -C ${FT_GIT_DIR} rev-parse ${FT_GIT_REF})
22 tools/git-sync-deps &&
23 git add DEPS
31 git -C ${FT_GIT_DIR} cat-file blob ${FT_PREVIOUS_REV}:${FT_INCLUDE} >> ${TMPFILE} &&
32 git merge-file ${FT_BUILD_DIR}/${SKIA_INCLUDE} ${TMPFILE} ${FT_GIT_DIR}/${FT_INCLUDE} &&
34 git add ${FT_BUILD_DIR}/${SKIA_INCLUDE}
41 FT_COMMIT_COUNT=$(git
[all...]
/third_party/node/deps/v8/tools/cppgc/
H A Dexport_to_github.sh35 v8_origin="https://chromium.googlesource.com/v8/v8.git"
83 $copybara_exe $init_history $copybara_file --dry-run --git-destination-path $git_temp_dir
98 git remote add v8_origin "$v8_origin"
99 git fetch --depth=1 v8_origin $v8_ref
100 git checkout v8_origin/master -- "$main_gn" "$test_gn" "$gen_cmake" \
108 git rm -f $main_gn $test_gn $gen_cmake > /dev/null
110 if git status -s | grep -q $(basename $cmakelists); then
112 git add $cmakelists
113 git commit --amend --no-edit > /dev/null
119 git pus
[all...]
/third_party/backends/tools/
H A Dupdate-upstreams.sh17 CONFIG_BASE_URL=https://git.savannah.gnu.org/cgit/config.git/plain
23 GNULIB_BASE_URL=https://git.savannah.gnu.org/cgit/gnulib.git/plain
24 fetch $GNULIB_BASE_URL/build-aux/git-version-gen
25 mv git-version-gen tools/
26 chmod 0755 tools/git-version-gen
/third_party/node/tools/actions/
H A Dcommit-queue.sh31 git config --local user.email "github-bot@iojs.org"
32 git config --local user.name "Node.js GitHub Bot"
59 git node land --autorebase --yes $MULTIPLE_COMMIT_POLICY "$pr" >output 2>&1 || echo "Failed to land #${pr}"
60 # cat here otherwise we'll be supressing the output of git node land
67 # If `git node land --abort` fails, we're in unknown state. Better to stop
70 git node land --abort --yes
75 start_sha=$(git rev-parse $UPSTREAM/$DEFAULT_BRANCH)
76 end_sha=$(git rev-parse HEAD)
79 if ! git push $UPSTREAM $DEFAULT_BRANCH >> output 2>&1; then
86 commit_title=$(git lo
[all...]
/third_party/libcoap/examples/lwip/
H A DMakefile46 git clone --depth 1 https://git.savannah.nongnu.org/git/lwip.git -b $(WITH_LWIP_BRANCH)
47 (cd lwip ; git checkout $(WITH_LWIP_BRANCH))
51 git clone --depth 1 https://git.savannah.nongnu.org/git/lwip/lwip-contrib.git -b $(WITH_LWIP_CONTRIB_BRANCH)
52 (cd lwip-contrib ; git checkou
[all...]
/third_party/spirv-tools/kokoro/scripts/linux/
H A Dbuild-docker.sh23 # This is required to run any git command in the docker since owner will
26 git config --global --add safe.directory $ROOT_DIR
48 /usr/bin/python3 utils/git-sync-deps --treeless
124 git clone https://github.com/google/shaderc.git .
128 git clone https://github.com/google/googletest.git
129 git clone https://github.com/KhronosGroup/glslang.git
131 git clon
[all...]
/third_party/fsverity-utils/scripts/
H A Ddo-release.sh40 git checkout -f
41 git clean -fdx
43 git clean -fdx
58 git commit -a --signoff --message="v$VERS"
59 git tag --sign "v$VERS" --message="$PKG"
61 git archive "v$VERS" --prefix="$PKG/" > "$PKG.tar"
73 git push
74 git push --tags
/third_party/skia/third_party/harfbuzz/
H A Droll-harfbuzz.sh3 HB_GIT_REPO=https://chromium.googlesource.com/external/github.com/harfbuzz/harfbuzz.git
10 HB_PREVIOUS_REV=$(git grep "${HB_GIT_REPO}" HEAD~1 -- DEPS | sed 's!.*'${HB_GIT_REPO}'@\([[:xdigit:]]\{40\}\).*!\1!')
15 git -C ${HB_GIT_DIR} fetch &&
16 HB_NEXT_REV=$(git -C ${HB_GIT_DIR} rev-parse ${HB_GIT_REF})
22 tools/git-sync-deps &&
23 git add DEPS
79 HB_COMMIT_COUNT=$(git -C ${HB_GIT_DIR} rev-list --count ${HB_PREVIOUS_REV}..${HB_NEXT_REV}) &&
80 git -m"Roll HarfBuzz from ${HB_PREVIOUS_REV_SHORT} to ${HB_NEXT_REV_SHORT} (${HB_COMMIT_COUNT} commits)
/third_party/libcoap/examples/contiki/
H A DMakefile9 git clone --depth 1 https://github.com/contiki-ng/contiki-ng.git $@
11 (cd ${CONTIKI} ; git pull --tags 2> /dev/null ; git checkout ${WITH_CONTIKI_NG_BRANCH})
17 TAG=`git describe --tags --all`; \
20 git pull --tags 2> /dev/null ; \
22 git checkout ${WITH_CONTIKI_NG_BRANCH} ; \
/third_party/mesa3d/.gitlab-ci/fossils/
H A Dfossils.sh12 git clone --no-checkout "$repo" fossils-db
13 (cd fossils-db; git reset "$commit" || git reset "origin/$commit")
25 cp -R .git .clean_git
30 rm -rf .git
31 cp -R .clean_git .git
38 local output=$(git lfs pull -I "$fossil" 2>&1)
59 # During git operations various git objects get created which
60 # may take up significant space. Store a clean .git instanc
[all...]
/third_party/skia/third_party/externals/spirv-tools/kokoro/scripts/linux/
H A Dbuild-docker.sh37 git clone ${@:3} "$url" "$dir"
51 pushd external/googletest; git reset --hard 1fb1bb23bb8418dc73a5a9a82bbed31dc610fec7; popd
129 git clone https://github.com/google/shaderc.git .
133 git clone https://github.com/google/googletest.git
134 git clone https://github.com/KhronosGroup/glslang.git
136 git clone https://github.com/KhronosGroup/SPIRV-Headers.git spir
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/kokoro/scripts/linux/
H A Dbuild-docker.sh37 git clone ${@:3} "$url" "$dir"
51 pushd external/googletest; git reset --hard 1fb1bb23bb8418dc73a5a9a82bbed31dc610fec7; popd
129 git clone https://github.com/google/shaderc.git .
133 git clone https://github.com/google/googletest.git
134 git clone https://github.com/KhronosGroup/glslang.git
136 git clone https://github.com/KhronosGroup/SPIRV-Headers.git spir
[all...]
/third_party/mesa3d/.gitlab-ci/container/
H A Dbuild-vkd3d-proton.sh29 git clone https://github.com/HansKristian-Work/vkd3d-proton.git --single-branch -b master --no-checkout "$VKD3D_PROTON_SRC_DIR"
31 git checkout "$VKD3D_PROTON_COMMIT"
32 git submodule update --init --recursive
33 git submodule update --recursive
/third_party/jerryscript/tools/
H A Dcheck-signed-off.sh74 parent_hashes=(`git show -s --format=%p HEAD | head -1`)
78 commit_hash=`git show -s --format=%h HEAD | head -1`
88 actual_signed_off_by_line=`git show -s --format=%B $commit_hash | sed '/^$/d' | tr -d '\015' | tail -n 1`
92 author_name=`git show -s --format=%an $commit_hash`
93 author_email=`git show -s --format=%ae $commit_hash`
/third_party/node/tools/v8/
H A Dfetch_deps.py23 "url" : "https://chromium.googlesource.com/v8/v8.git",
49 def git(args): function
50 # shell=True needed on Windows to resolve git.bat.
52 "git " + args, cwd=v8_path, shell=True).strip()
54 expected_git_dir = os.path.join(v8_path, ".git")
55 actual_git_dir = git("rev-parse --absolute-git-dir")
57 print("V8 is tracked stand-alone by git.")
59 print("Initializing temporary git repository in v8.")
60 git("ini
[all...]
/third_party/skia/third_party/externals/harfbuzz/
H A Dgit.mk0 # 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 statu
[all...]
/third_party/skia/third_party/externals/harfbuzz/test/shape/data/text-rendering-tests/
H A Dupdate.py68 git = shutil.which ('git') variable
69 assert git
72 subprocess.run ([git, 'pull'], cwd='text-rendering-tests', check=True)
74 subprocess.run ([git, 'clone', 'https://github.com/unicode-org/text-rendering-tests'], check=True)
79 subprocess.run([git, 'add', 'fonts'], check=True)
100 subprocess.run([git, 'add', 'tests'], check=True)
118 subprocess.run([git, 'add', 'Makefile.sources'], check=True)
120 print ('Updated the testsuit, now run `git commit -e -m "[test/text-rendering-tests] Update from upstream"`')
/third_party/vk-gl-cts/scripts/src_util/
H A Dpre_commit.py31 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)
/third_party/skia/third_party/externals/angle2/scripts/
H A Droll_aosp.sh110 git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git ${DEPOT_TOOLS_DIR}
151 git add Android.bp
153 # Delete the .git files in each dep so that it can be added to this repo. Some deps like jsoncpp
156 rm -rf "$dep"/.git
183 git add -f "third_party/*"
/third_party/node/deps/npm/node_modules/pacote/lib/
H A Dgit.js6 const git = require('@npmcli/git')
19 const addGitSha = require('./util/add-git-sha.js')
30 // We have to add the git+ back because npa suppresses it.
35 // add git+ to the url, but only one time.
36 const addGitPlus = url => url && `git+${url}`.replace(/^(git\+)+/, 'git+')
42 // we never want to compare integrity for git dependencies: npm/rfcs#525
45 log.warn(`skipping integrity check for git dependenc
[all...]
/third_party/skia/third_party/externals/harfbuzz/test/shape/data/aots/
H A Dupdate.py7 git = shutil.which ('git'); assert git variable
14 subprocess.run ([git, 'clone', 'https://github.com/adobe-type-tools/aots'], check=True)
18 subprocess.run ([git, 'pull'], cwd='aots', check=True)
/third_party/node/deps/npm/node_modules/hosted-git-info/lib/
H A Dhosts.js11 `git@${domain}:${user}/${project}.git${maybeJoin('#', committish)}`,
13 `git+ssh://git@${domain}/${user}/${project}.git${maybeJoin('#', committish)}`,
25 `git+https://${maybeJoin(auth, '@')}${domain}/${user}/${project}.git${maybeJoin('#', committish)}`,
41 protocols: ['git:', 'http:', 'git+ssh:', 'git
[all...]

Completed in 5 milliseconds

12345678910>>...12