Home
last modified time | relevance | path

Searched refs:git (Results 1 – 25 of 669) sorted by relevance

12345678910>>...27

/external/glide/
Dupdate_files.sh23 if ! git remote | grep bump > /dev/null;
25 git remote add bump https://github.com/bumptech/glide.git
30 git fetch bump ${GLIDE_BRANCH} || exit 1
37 git checkout ${ANDROID_BRANCH_NAME}
40 git merge FETCH_HEAD || true
43 git rm -rf samples || true
44 git rm -rf integration || true
45 git rm -rf static || true
46 git rm -rf glide || true
47 git rm -rf .idea || true
[all …]
/external/skia/experimental/documentation/
Dgerrit.md1 Using Gerrit without git-cl
13 curl -Lo "$(git rev-parse --git-dir)/hooks/commit-msg"
15 chmod +x "$(git rev-parse --git-dir)/hooks/commit-msg"
22 git remote set-url origin 'https://skia.googlesource.com/skia.git'
30 git checkout -b TOPIC
34 git checkout -b TOPIC -t origin/master
39 git commit --all --message 'Change Foo'
40 git log -1
42 `git log` should show that a Change-Id line has been added you your commit
52 git push origin @:refs/for/master
[all …]
/external/vulkan-validation-layers/build-android/
Dupdate_external_sources_android.sh40 git clone persistent-https://android.git.corp.google.com/platform/external/shaderc/glslang .
41 git checkout $GLSLANG_REVISION
47 git fetch --all
48 git checkout $GLSLANG_REVISION
56 git clone persistent-https://android.git.corp.google.com/platform/external/shaderc/spirv-tools .
57 git checkout $SPIRV_TOOLS_REVISION
63 git fetch --all
64 git checkout $SPIRV_TOOLS_REVISION
72git clone persistent-https://android.git.corp.google.com/platform/external/shaderc/spirv-headers .
73 git checkout $SPIRV_HEADERS_REVISION
[all …]
Dupdate_external_sources_android.bat40 where /q git.exe
43 echo git.exe not found
44 echo Git for Windows can be downloaded here: https://git-scm.com/download/win
45 echo Install and ensure git.exe makes it into your PATH
197 git clone https://github.com/KhronosGroup/glslang.git .
198 git checkout %GLSLANG_REVISION%
209 git fetch --all
210 git checkout %GLSLANG_REVISION%
222 git clone https://github.com/KhronosGroup/SPIRV-Tools.git .
223 git checkout %SPIRV_TOOLS_REVISION%
[all …]
/external/skia/
DDEPS4 … : "https://chromium.googlesource.com/chromium/buildtools.git@e6b510a9daf822bbe9f…
5 …"common" : "https://skia.googlesource.com/common.git@9737551d7a52c3db…
6 …"third_party/externals/angle2" : "https://chromium.googlesource.com/angle/angle.git@cce8965…
7 …g_sdk" : "https://android.googlesource.com/platform/external/dng_sdk.git@96443b262250c390b0c…
8 …/expat" : "https://android.googlesource.com/platform/external/expat.git@android-6.0.1_r55",
9 …"third_party/externals/freetype" : "https://skia.googlesource.com/third_party/freetype2.git@4…
10 …"third_party/externals/harfbuzz" : "https://skia.googlesource.com/third_party/harfbuzz.git@1.…
11 …"third_party/externals/icu" : "https://chromium.googlesource.com/chromium/deps/icu.git@e…
12 …"third_party/externals/imgui" : "https://github.com/ocornut/imgui.git@6384eee34f08cb7eab8d…
13 … : "https://chromium.googlesource.com/external/github.com/open-source-parsers/jsoncpp.git@1.0.0",
[all …]
/external/libcap/
DCHANGELOG7 https://git.kernel.org/cgit/linux/kernel/git/morgan/libcap.git/
11 git clone git://git.kernel.org/pub/scm/linux/kernel/git/morgan/libcap.git
15 https://git.kernel.org/cgit/linux/kernel/git/morgan/libcap.git/tree/License
/external/vulkan-validation-layers/
Dupdate_external_sources.sh21 git clone https://github.com/KhronosGroup/glslang.git .
22 git checkout ${GLSLANG_REVISION}
28 git fetch --all
29 git checkout --force ${GLSLANG_REVISION}
37 git clone https://github.com/KhronosGroup/SPIRV-Tools.git .
38 git checkout ${SPIRV_TOOLS_REVISION}
41 git clone https://github.com/KhronosGroup/SPIRV-Headers .
42 git checkout ${SPIRV_HEADERS_REVISION}
48 git fetch --all
49 git checkout ${SPIRV_TOOLS_REVISION}
[all …]
/external/harfbuzz_ng/.ci/
Ddeploy-docs.sh12 REVISION=$(git rev-parse --short HEAD)
20 git init
21 git config user.name "Travis CI"
22 git config user.email "travis@harfbuzz.org"
25 git remote add upstream "https://$GH_TOKEN@github.com/$TRAVIS_REPO_SLUG.git"
27 git fetch upstream
28 git reset upstream/gh-pages
31 git add -A .
32 git commit -m "Rebuild docs for $REVISION"
33 git push -q upstream HEAD:gh-pages
/external/skia/tools/
Dgit-sync-deps50 for git in searchlist:
52 subprocess.call([git, '--version'], stdout=devnull)
55 return git
76 def git_repository_sync_is_disabled(git, directory): argument
79 [git, 'config', 'sync-deps.disable'], cwd=directory)
85 def is_git_toplevel(git, directory): argument
96 [git, 'rev-parse', '--show-toplevel'], cwd=directory).strip()
111 def git_checkout_to_directory(git, repo, checkoutable, directory, verbose): argument
132 [git, 'clone', '--quiet', repo, directory])
134 if not is_git_toplevel(git, directory):
[all …]
/external/clang/
DToolchainPrebuilts.md14 You can use git/svn to query the latest tagged version to see what we will be
27 persistent-https://android.git.corp.google.com/platform/manifest -b llvm
33 git branch -D working_dev
48 git branch -D clean_master
49 git checkout -b clean_master <SHA_FOR_SQUASH>
50 git checkout working_dev
51 git merge -s ours clean_master
52 git push aosp refs/heads/working_dev:refs/heads/dev
53 git branch -D clean_master
58 git branch -D clean_master
[all …]
/external/curl/
Dupdate_curl.sh65 git rev-parse --abbrev-ref HEAD
81 if ! git remote show | grep "^${UPSTREAM}\$" >/dev/null; then
83 git remote add -t master "${UPSTREAM}" "${UPSTREAM_GIT}"
86 TRACKING_BRANCH=$(git rev-parse --abbrev-ref --symbolic-full-name @{u})
90 git fetch --quiet "${UPSTREAM}" master
118 git --no-pager log "${UPSTREAM}/master" --not "${current_sha}" --oneline \
124 target_sha=$(git rev-list -n 1 "${target_sha}")
125 target_version=$(git show ${target_sha}:include/curl/curlver.h | \
131 if [[ $(git log --oneline "${target_sha}" --not "${current_sha}" | wc -l) \
154 git --no-pager log "${target_sha}" \
[all …]
/external/selinux/scripts/
Drelease7 git clone git@github.com:SELinuxProject/selinux.wiki.git $WIKIDIR
14 git tag -a $(date '+%Y%m%d') -m "Release $(date '+%Y%m%d')"
23 git tag $i-$VERS > /dev/null 2>&1
24 git archive --format=tar --prefix=$i-$VERS/ $i-$VERS | gzip > ../$DEST/$ARCHIVE
32 git tag selinux-$i-$VERS > /dev/null 2>&1
33 git archive --format=tar --prefix=selinux-$i-$VERS/ selinux-$i-$VERS | gzip > ../$DEST/$ARCHIVE
39 git add .
/external/toolchain-utils/deprecated/repo_to_repo_files/
Dgdb-master.json.rtr4 "type": "git",
6 "address": "git://sourceware.org/git/gdb.git"
11 "type": "git",
14 ".git"
17 "address": "https://chromium.googlesource.com/chromiumos/third_party/gdb.git"
/external/libvpx/libvpx/tools/
Dftfy.sh48 LAST_CHANGEID=$(git show | awk '/Change-Id:/{print $2}')
56 NEW_CHANGEID=I$(echo $NEW_CHANGEID | git hash-object --stdin)
59 git commit -a -C HEAD > /dev/null
60 git commit --amend -F- << EOF
79 git commit -a --amend -F "$NEW_COMMIT_MSG"
85 git log -1 --format=%B > "$ORIG_COMMIT_MSG"
110 if ! git diff --quiet HEAD; then
119 git show > "${ORIG_DIFF}"
122 for f in $(git diff HEAD^ --name-only -M90 --diff-filter=AM); do
128 git diff --no-color --no-ext-diff > "${MODIFIED_DIFF}"
[all …]
/external/fmtlib/support/
Dupdate-converity-branch.py21 git = Git(dir) variable
22 git('clone', '-b', 'coverity', 'git@github.com:fmtlib/fmt.git', dir)
23 output = git('merge', '-X', 'theirs', '--no-commit', 'origin/master')
25 git('reset', 'HEAD', '.travis.yml')
26 git('checkout', '--', '.travis.yml')
27 git('commit', '-m', 'Update coverity branch')
28 git('push')
/external/skia/site/dev/contrib/
Drevert.md14 git fetch origin master
18 git checkout -b revert$RANDOM origin/master
22 git log origin/master
26 git revert <SHA1>
30 git cl upload
34 git cl land
38 git checkout --detach && git branch -D @{-1}
/external/dagger2/util/
Dgenerate-latest-docs.sh12git clone --quiet --branch=gh-pages https://${GH_TOKEN}@github.com/google/dagger gh-pages > /dev/n…
15 git config --global user.email "travis@travis-ci.org"
16 git config --global user.name "travis-ci"
17 git rm -rf api/latest
20 git add -f api/latest
21git commit -m "Lastest javadoc on successful travis build $TRAVIS_BUILD_NUMBER auto-pushed to gh-p…
22 git push -fq origin gh-pages > /dev/null
/external/llvm/utils/git-svn/
Dgit-svnrevert11 git status -uno
16 OTHER=$(git svn find-rev "$COMMIT")
36 ONE_LINE_MSG=$(git log --oneline $GIT -1 | cut -f2- -d " ")
39 git revert --no-commit $GIT 2>/dev/null
42 git reset --hard HEAD
55 git commit --file="$TEMPLATE" --edit
58 git reset --hard HEAD
Dgit-svnup5 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
/external/sfntly/
DREADME.android2 git merge aosp/upstream-master
6 git rm -rf data
7 git rm -rf java
8 git rm -rf cpp/data
9 git rm -rf cpp/ext
10 git rm -rf cpp/tools
11 git commit
/external/libvpx/
Dupdate_libvpx.sh50 git clone $GIT_REPO .
53 git checkout -b tot $GIT_BRANCH
61 hash=$(git log -1 --format="%H")
112 rm -rf .git .gitignore .gitattributes
115 echo "$add" | xargs -I {} git add {}
116 echo "$delete" | xargs -I {} git rm --ignore-unmatch {}
119 find . -type d -empty -exec git rm {} \;
/external/okhttp/
Ddeploy_website.sh12 git clone $REPO $DIR
18 git checkout -t origin/gh-pages
27 git add .
28 git add -u
29 git commit -m "Website at $(date)"
32 git push origin gh-pages
/external/okhttp/okio/
Ddeploy_javadoc.sh15 git clone $REPO $DIR
21 git checkout -t origin/gh-pages
32 git add .
33 git add -u
34 git commit -m "Website at $(date)"
37 git push origin gh-pages
/external/dagger2/
Ddeploy_website.sh19 git clone $REPO $DIR
25 git checkout -t origin/gh-pages
40 git add .
41 git add -u
42 git commit -m "Website at $(date)"
45 git push origin gh-pages
/external/guice/util/
Dgenerate-latest-docs.sh16 git config --global user.email "travis@travis-ci.org"
17 git config --global user.name "travis-ci"
18git clone --quiet --branch=gh-pages https://${GH_TOKEN}@github.com/google/guice gh-pages > /dev/nu…
21 git rm -rf api-docs/latest/api-diffs api-docs/latest/javadoc
25 git add -f .
26git commit -m "Lastest javadoc & api-diffs on successful travis build $TRAVIS_BUILD_NUMBER auto-pu…
27 git push -fq origin gh-pages > /dev/null

12345678910>>...27