Home
last modified time | relevance | path

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

12345678910>>...12

/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/linux-tools-perf/src/tools/perf/Documentation/
Dexamples.txt66 well. For example the page allocations done by a 'git gc' can be
69 titan:~/git> perf record -e kmem:mm_page_alloc -c 1 ./git gc
79 titan:~/git> perf report
85 23.57% git-repack /lib64/libc-2.5.so
86 21.81% git /lib64/libc-2.5.so
87 14.59% git ./git
88 11.79% git-repack ./git
89 7.12% git /lib64/ld-2.5.so
90 3.16% git-repack /lib64/libpthread-2.5.so
91 2.09% git-repack /bin/bash
[all …]
/external/skia/
DDEPS6 "common": "https://skia.googlesource.com/common.git@c282fe0b6e392b14f88d647cbd86e1a3ef5498e0",
11 …"third_party/externals/angle2" : "https://chromium.googlesource.com/angle/angle.git@c415283b2bcd7…
12 …"third_party/externals/freetype": "https://skia.googlesource.com/third_party/freetype2.git@VER-2-5…
13 …"third_party/externals/gyp" : "https://chromium.googlesource.com/external/gyp.git@dd831fd86e7a…
14 "third_party/externals/harfbuzz": "https://skia.googlesource.com/third_party/harfbuzz.git@0.9.35",
15 …"third_party/externals/jsoncpp" : "https://chromium.googlesource.com/external/jsoncpp/jsoncpp.git@…
16 …/libjpeg" : "https://chromium.googlesource.com/chromium/deps/libjpeg_turbo.git@034e9a9747e0983bc19…
17 …"third_party/externals/libwebp" : "https://chromium.googlesource.com/webm/libwebp.git@3fe91635df87…
18 …"third_party/externals/nanomsg" : "https://skia.googlesource.com/third_party/nanomsg.git@0.4-beta",
21 …"third_party/externals/libpng" : "https://skia.googlesource.com/third_party/libpng.git@070a616b82…
[all …]
/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()
102 def git_checkout_to_directory(git, repo, checkoutable, directory, verbose): argument
123 [git, 'clone', '--quiet', repo, directory])
125 if not is_git_toplevel(git, directory):
[all …]
Dgit-skia-verify48 git diff --exit-code > /dev/null
54 git diff --cached --exit-code > /dev/null
65 PREVIOUS_BRANCH=`git branch --no-color | grep "^*" | awk '{ print $2}'`
79 git checkout --detach "$REVISION"
86 git checkout "$PREVIOUS_BRANCH"
92 git checkout "$PREVIOUS_BRANCH"
/external/skia/site/user/
Ddownload.md4 Install gclient and git
11 depot_tools will also install git on your system, if it wasn't installed
16 Configure git
19 $ git config --global user.name "Your Name"
20 $ git config --global user.email you@example.com
27 $ gclient config --name . --unmanaged https://skia.googlesource.com/skia.git
29 $ git checkout master
40 $ git checkout --track origin/master -b my_feature master
44 $ git add [file1] [file2] ...
45 $ git commit
[all …]
/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"
111 if ! git diff --quiet HEAD; then
120 git show > "${ORIG_DIFF}"
123 for f in $(git diff HEAD^ --name-only -M90 --diff-filter=AM); do
129 git diff --no-color --no-ext-diff > "${MODIFIED_DIFF}"
[all …]
/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}
Dsubmit.md11 $ git checkout -b my_feature origin/master
17 $ git add [file1] [file2] ...
18 $ git commit
24 $ git pull --rebase
59 Use git-cl, which comes with [depot tools](http://sites.google.com/a/chromium.org/dev/developers/ho…
60 For help, run git-cl help.
62 ### Configuring git-cl
64 Before using any git-cl commands you will need to configure it to point at the
68 git cl config https://skia.googlesource.com/skia/+/master/codereview.settings
74 touching. If you have doubts, look at the git blame for the file to see who else
[all …]
/external/llvm/utils/git-svn/
Dgit-svnrevert11 git status -uno
16 OTHER=$(git svn find-rev "$COMMIT")
31 ONE_LINE_MSG=$(git log --oneline $GIT -1 | cut -f2- -d " ")
34 git revert --no-commit $GIT 2>/dev/null
37 git reset --hard HEAD
50 git commit --file="$TEMPLATE" --edit
53 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/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/strace/
Dgit-version-gen158 && v=`git describe --abbrev=4 --match="$prefix*" HEAD 2>/dev/null \
159 || git describe --abbrev=4 HEAD 2>/dev/null` \
171 *-*-*) : git describe is okay three part flavor ;;
173 : git describe is older two part flavor
178 commit_list=`git rev-list "$vtag"..HEAD 2>/dev/null` \
191 elif test "x$fallback" = x || git --version >/dev/null 2>&1; then
204 git update-index --refresh > /dev/null 2>&1
206 dirty=`exec 2>/dev/null;git diff-index --name-only HEAD` || dirty=
/external/okhttp/
Ddeploy_website.sh15 git clone $REPO $DIR
21 git checkout -t origin/gh-pages
46 git add .
47 git add -u
48 git commit -m "Website at $(date)"
51 git push origin gh-pages
/external/bison/build-aux/
Dgit-version-gen154 && v=`git describe --abbrev=4 --match="$prefix*" HEAD 2>/dev/null \
155 || git describe --abbrev=4 HEAD 2>/dev/null` \
167 *-*-*) : git describe is okay three part flavor ;;
169 : git describe is older two part flavor
174 commit_list=`git rev-list "$vtag"..HEAD 2>/dev/null` \
198 git update-index --refresh > /dev/null 2>&1
200 dirty=`exec 2>/dev/null;git diff-index --name-only HEAD` || dirty=
/external/llvm/test/DebugInfo/
Ddebuginfofinder-forward-declaration.ll30 …ng version 3.7.0 (http://llvm.org/git/clang.git 247b30a043eb8f39ea3708e7e995089da0a6b00f) (http://…
42 …ng version 3.7.0 (http://llvm.org/git/clang.git 247b30a043eb8f39ea3708e7e995089da0a6b00f) (http://…
/external/harfbuzz_ng/
DMakefile.am32 (GIT_DIR=$(top_srcdir)/.git \
37 (test -f $@ || echo git-log is required to generate this file >> "$(srcdir)/$@")); \
40 (echo A git checkout and git-log is required to generate ChangeLog >&2 && \
41 echo A git checkout and git-log is required to generate this file >> "$(srcdir)/$@"); \
80 -include $(top_srcdir)/git.mk
/external/deqp/framework/qphelper/
DCMakeLists.txt46 elseif (EXISTS "${CMAKE_SOURCE_DIR}/.git")
50 message(STATUS "Using git revision as release identifier")
53 …COMMAND ${PYTHON_BIN} -B ${CMAKE_CURRENT_SOURCE_DIR}/gen_release_info.py --git --out=${CMAKE_CURRE…
54 …DEPENDS gen_release_info.py ${CMAKE_SOURCE_DIR}/.git/HEAD ${CMAKE_SOURCE_DIR}/.git/index) # \note …
55 add_custom_target(git-rel-info DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/qpReleaseInfo.inl)
56 add_dependencies(qphelper git-rel-info)
/external/v8/tools/
Dv8-info.sh49 Fetches V8 revision information from a git-svn checkout.
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
/external/ceres-solver/docs/source/
Dcontributing.rst20 use `git <http://git-scm.com/>`_ for version control. We use the
32 1. Download and configure ``git``.
34 * Mac ``brew install git``.
35 * Linux ``sudo apt-get install git``.
46 3. Clone the Ceres Solver ``git`` repository from Gerrit.
50 git clone https://ceres-solver.googlesource.com/ceres-solver
61 following in the root directory of the local ``git`` repository:
65 … curl -o .git/hooks/commit-msg https://ceres-solver-review.googlesource.com/tools/hooks/commit-msg
66 chmod +x .git/hooks/commit-msg
81 ``git`` repositories.
[all …]
/external/llvm/utils/
DGetSourceVersion19 elif [ -f .git/svn/.metadata ]; then
20 git svn info | grep 'Revision:' | cut -d: -f2-
21 elif [ -d .git ]; then
22 git log -1 --pretty=format:%H
DGetRepositoryPath19 elif [ -f .git/svn/.metadata ]; then
20 git svn info | grep 'URL:' | cut -d: -f2-
21 elif [ -d .git ]; then
22 git remote -v | grep 'fetch' | awk '{ print $2 }' | head -n1
/external/elfutils/src/
DCONTRIBUTING4 git clone git://git.fedorahosted.org/git/elfutils.git
10 Please supply patches using git format-patch or using git send-email.
47 git commit --signoff will add such a Signed-off-by line at the end of
/external/tinycompress/
DREADME17 Git: git clone git://git.alsa-project.org/tinycompress.git
18 Http: http://git.alsa-project.org/?p=tinycompress.git
/external/okhttp/okhttp-hpacktests/
DREADME.md5 implementation. The HPACK test cases are in a separate git submodule, so to
8 git submodule init
9 git submodule update
14 * Add maven goal to avoid manual call to git submodule init.
15 * Make hpack-test-case update itself from git, and run new tests.

12345678910>>...12