Home
last modified time | relevance | path

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

12

/tools/repohooks/
Dpre-upload.py45 import rh.git
209 os.path.join(rh.git.find_repo_root(), '.repo', 'manifests'),
211 rh.git.find_repo_root(),
280 remote = rh.git.get_upstream_remote()
281 upstream_branch = rh.git.get_upstream_branch()
289 rel_proj_dir = os.path.relpath(proj_dir, rh.git.find_repo_root())
292 'REPO_LREV': rh.git.get_commit_for_ref(upstream_branch),
296 'REPO_RREV': rh.git.get_remote_revision(upstream_branch, remote),
300 commit_list = rh.git.get_commits(
309 diff = rh.git.get_affected_files(commit)
[all …]
DREADME.md32 * Project-local settings (e.g. a single .git repo). These control settings for
41 * `.repo/manifests/GLOBAL-PREUPLOAD.cfg`: The manifest git repo.
42 Simply check this in to the manifest git repo and you're done.
52 This file is checked in the top of a specific git repository. Stacking them
79 Hooks are executed in the top directory of the git repository. All paths should
88 * `REPO_REMOTE`: The name of the git remote.
178 * `clang_format`: Run git-clang-format against the commit. The default style is
273 * `git-clang-format`: used for the `clang_format` builtin hook.
286 # Or paths relative to the top of the git project.
/tools/treble/hacksaw/
DREADME.md7 If you have a large multi-gigabyte codebase spread out through multiple git projects it can take a …
8 lets you split off a clean workspace in seconds. It does so by only copying git projects that you
31 the git projects checked out for editing. Contrast that with how long it takes
97 go get android.googlesource.com/platform/tools/treble.git/hacksaw/cmd/hacksaw
110 Hacksaw creates bind mounts for all git projects in a codebase. It then
134 go get android.googlesource.com/platform/tools/treble.git/hacksaw/cmd/hacksawd
137 sudo ~/go/src/android.googlesource.com/platform/tools/treble.git/hacksaw/scripts/install-service.sh
146 sudo ~/go/src/android.googlesource.com/platform/tools/treble.git/hacksaw/scripts/uninstall-service.…
152 Except for projects that you are currently editing. Those will require you to `git pull`
167 So at the moment you can only upload to Gerrit [using git
[all …]
Dgo.mod1 module android.googlesource.com/platform/tools/treble.git/hacksaw
/tools/repohooks/rh/
Dhooks_unittest.py97 [rh.git.RawDiffEntry(file=x)
110 @mock.patch.object(rh.git, 'find_repo_root', return_value='/ ${BUILD_OS}')
170 @mock.patch.object(rh.git, 'find_repo_root', return_value='/repo!')
292 diff = [rh.git.RawDiffEntry(file=x) for x in files]
318 diff = [rh.git.RawDiffEntry(file=x) for x in files]
337 diff = [rh.git.RawDiffEntry(file='Android.bp')]
764 diff = [rh.git.RawDiffEntry(file='foo.go')]
802 diff = [rh.git.RawDiffEntry(file='lib.rs')]
821 diff = [rh.git.RawDiffEntry(file='TEST_MAPPING')]
835 diff = [rh.git.RawDiffEntry(file='IFoo.go')]
Dhooks.py31 import rh.git
134 return rh.git.find_repo_root()
353 data = rh.git.get_file_content(commit, d.file)
368 input=rh.git.get_patch(commit))
828 data = rh.git.get_file_content(commit, d.file)
849 data = rh.git.get_file_content(commit, d.file)
898 data = rh.git.get_file_content(commit, d.file)
987 data = rh.git.get_file_content(commit, d.file)
/tools/aadevtools/dev/
Dclone_proj.sh56 git clone "$GIT_REPO_URL/$PROJECT"
59 git clone -b $BRANCH "$GIT_REPO_URL/$PROJECT"
64 f=`git rev-parse --git-dir`/hooks/commit-msg ; mkdir -p $(dirname $f) ; curl -Lo $f https://gerrit-…
/tools/external_updater/
DREADME.md41 If type of a URL is set to GIT, the URL must be a git upstream
42 (the one you can use with `git clone`). And the version field must
46 When upgrade, the tool will simply run `git merge tag/sha`.
83 If you have the choice between archives and git tags, choose tags.
124 repo forall -c git checkout .
125 repo forall -c git clean -xdf
Dupdate_package.sh99 git add .
Dregen_bp.sh84 --exclude-dir .git --exclude build.rs \
/tools/platform-compat/hiddenapi/
Dchecksorted_sha.sh4 git show --name-only --pretty=format: $1 | grep "hiddenapi/hiddenapi-.*txt" | while read file; do
5 diff <(git show $1:$file) <(git show $1:$file | $LOCAL_DIR/sort_api.sh ) || {
/tools/aadevtools/dev/resource/
Dsysui_gcar_android10-qpr3-release_android11-release.txt22 git diff --stat remotes/aosp/android10-qpr3-release remotes/aosp/android11-release -- `find . -name…
102 git diff --stat remotes/aosp/android10-qpr3-release remotes/aosp/android11-release -- `find . -name…
157 git diff --stat remotes/aosp/android10-qpr3-release remotes/aosp/android11-release -- `find . -name…
189 git diff --stat remotes/aosp/android10-qpr3-release remotes/aosp/android11-release -- `find . -name…
222 git diff --stat remotes/aosp/android10-qpr3-release remotes/aosp/android11-release -- `find . -name…
/tools/metalava/
DDOWNLOADING.md11 curl https://storage.googleapis.com/git-repo-downloads/repo > ~/bin/repo
18 git config --global user.name "Your Name"
19 git config --global user.email "you@example.com"
DAPI-LINT.md83 Then re-run the build and you should now see diffs to the baseline file; git
86 $ git status
89 (use "git add <file>..." to include in what will be committed)
/tools/metalava/src/test/java/com/android/tools/metalava/
DSymlinkTest.kt49 val git = File(file, ".git").toPath() in <lambda>() constant
50 java.nio.file.Files.createSymbolicLink(git, dir.toPath()) in <lambda>()
DBaselineTest.kt138 val git = File(file, ".git").toPath() in <lambda>() constant
139 java.nio.file.Files.createSymbolicLink(git, dir.toPath()) in <lambda>()
/tools/repohooks/tools/
Dandroid_test_mapping_format.py39 import rh.git
189 json_data = rh.git.get_file_content(opts.commit, filename)
Dcheckpatch.pl-update46 output=$(git ls-remote --tags "${GIT_URL}")
/tools/currysrc/scripts/
Drepackage-common.sh175 …(cd $SRC_OUT_DIR; git checkout HEAD $(git status --short | grep -E "^ D .*/TEST_MAPPING$" | cut -c…
/tools/treble/hacksaw/git/
Dlister.go15 package git package
Drepo.go15 package git package
Drepo_test.go15 package git package
/tools/acloud/setup/pre_setup_sh/
Dgoogle_setup_warn.sh21 USER=$(git config --get user.email)
/tools/treble/hacksaw/workspace/
Dcompose.go54 lister := git.NewRepoLister()
/tools/aadevtools/
DREADME.md20 * clone_proj.sh to clone a git project for the unbundled development workflows

12