Home
last modified time | relevance | path

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

12345678910>>...17

/llvm-project-15.0.7/lldb/scripts/lldb-test-qemu/
H A Dsetup.sh43 sudo apt install git python3-dev libsdl1.2-dev build-essential libpixman-1-dev
48 git clone --depth 1 git://git.qemu.org/qemu.git qemu.git
51 cd qemu.git
60 sudo apt install git bison flex build-essential libssl-dev bc
65 git clone --depth 1 \
66 https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git linux.git
69 cd linux.git
104 rm -rf linux.git
114 rm -rf qemu.git
/llvm-project-15.0.7/llvm/utils/release/
H A Dexport.sh31 [-git-ref|--git-ref <git-ref>]
39 …-git-ref | --git-ref <git-ref> (optional) Use <git-ref> to determine the release…
51 * test-suite-<RELEASE><RC>.src.tar.xz (only when not using --git-ref)
57 * llvm-git-revision-<YYYYMMDD>.txt (contains the current git revision sha1)
63 * <RC> -> rc4 (will be empty when using --git-ref)
67 $(basename $0) --git-ref upstream/main --template '\${PROJECT}-\${YYYYMMDD}.src.tar.xz'
82 [ -d $llvm_src_dir/.git ] || ( echo "No git repository at $llvm_src_dir" ; exit 1 )
109 git_rev=$(git rev-parse $tree_id)
113 echo "$git_rev" > $target_dir/llvm-git-revision-$yyyymmdd.txt
134git archive --prefix=$proj-$release$rc.src/ $tree_id . | xz -T0 >$target_dir/$(template_file $proj)
[all …]
/llvm-project-15.0.7/llvm/docs/
H A DGitBisecting.rst21 See https://git-scm.com/docs/git-bisect for a good overview. In summary:
25 git bisect start
26 git bisect bad main
27 git bisect good f00ba
30 that revision, and run ``git bisect good`` or ``git bisect bad``.
33 ``git bisect skip`` and git will pick a nearby alternate commit.
35 (To abort a bisect, run ``git bisect reset``, and if git complains about not
36 being able to reset, do the usual ``git checkout -f main; git reset --hard
39 ``git bisect run``
112 git bisect start -- clang llvm compiler-rt
[all …]
H A DContributing.rst74 % git clang-format HEAD~1
81 % git commit --amend -a
88 the git integration can be run from
89 ``clang/tools/clang-format/git-clang-format``.
132 Here is an example workflow using git. This workflow assumes you have an
138 % git checkout main && git pull
140 % git rebase --onto main --root branch-with-change
144 % git log origin/main...HEAD --oneline
146 % git push origin HEAD:main
150 that include merges, so the `git rebase` step above is required.
[all …]
/llvm-project-15.0.7/llvm/docs/Proposals/
H A DGitHubMove.rst265 mirrors (e.g. https://git.llvm.org/git/compiler-rt.git) will continue to
322 git clone https://llvm.org/git/llvm.git
339 git clone https://github.com/llvm/llvm-project.git
392 git clone https://llvm.org/git/llvm.git
397 git checkout `git svn find-rev -B r258109`
399 git clone https://llvm.org/git/clang.git
404 git checkout `git svn find-rev -B r258109`
406 git clone https://llvm.org/git/libcxx.git
411 git checkout `git svn find-rev -B r258109`
458 git pull
[all …]
/llvm-project-15.0.7/mlir/utils/clang-tidy/
H A Dapply-clang-tidy.sh40 git reset --hard HEAD
49 git status
78 git clang-format -f
79 if [[ $(git diff --stat) == '' ]]; then
94 git clang-format -f
95 if [[ $(git diff --stat) == '' ]]; then
107 … [[ ! -z "$REJECT_DIR" ]] && git diff > "${REJECT_DIR}/${check}_$(basename ${file}).reject.diff"
112 git clang-format -f
114 git commit -a -m "Apply clang-tidy fixes for $check in $(basename $file) (NFC)"
/llvm-project-15.0.7/polly/lib/External/
H A Dupdate-isl.sh12 git clone --recursive http://repo.or.cz/isl.git $GITDIR
14 (cd $GITDIR && git checkout --detach $1)
15 (cd $GITDIR && git submodule update --recursive)
26 (cd $GITDIR && git describe > $GITDIR/GIT_HEAD_ID)
28 rm -rf $GITDIR/.git
29 rm -rf $GITDIR/imath/.git
/llvm-project-15.0.7/llvm/utils/gn/build/
H A Dwrite_vcsrevision.py40 git, use_shell = which('git'), False
41 if not git: git = which('git.exe')
42 if not git: git, use_shell = which('git.bat'), True
44 [git, 'rev-parse', '--git-dir'],
51 [git, 'rev-parse', '--short', 'HEAD'],
54 [git, 'remote', 'get-url', 'origin'],
/llvm-project-15.0.7/llvm/utils/docker/scripts/
H A Dcheckout.sh16 Checkout git sources into /tmp/clang-build/src. Used inside a docker container.
20 -b|--branch git branch to checkout, i.e. 'main',
23 -r|--revision git revision to checkout
86 git cherry-pick $CHERRY_REV
100 git clone -b $LLVM_BRANCH --single-branch \
105 git checkout -q $GIT_REV_ARG
/llvm-project-15.0.7/llvm/utils/
H A 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
/llvm-project-15.0.7/third-party/benchmark/docs/
H A Dreleasing.md8 * `git log $(git describe --abbrev=0 --tags)..HEAD` gives you the list of
33 * `git pull --tags`
34 * `git tag -a -f <tag> <tag>`
35 * `git push --force --tags origin`
/llvm-project-15.0.7/clang-tools-extra/
H A D.gitignore2 # This file specifies intentionally untracked files that git should ignore.
3 # See: http://www.kernel.org/pub/software/scm/git/docs/gitignore.html
5 # This file is intentionally different from the output of `git svn show-ignore`,
14 # Merge files created by git.
/llvm-project-15.0.7/polly/lib/External/isl/
H A DREADME16 If you are taking the source from the git repository, then you first
19 git clone git://repo.or.cz/isl.git
34 to compile isl, then report the git version (output of "git describe")
/llvm-project-15.0.7/.github/workflows/
H A Dissue-release-workflow.yml50 pip install -r ./llvm/utils/git/requirements.txt
51 ./llvm/utils/git/github-automation.py --token ${{ github.token }} setup-llvmbot-git
56 ./llvm/utils/git/github-automation.py \
78 pip install -r ./llvm/utils/git/requirements.txt
83 ./llvm/utils/git/github-automation.py \
H A Drelease-tasks.yml62 git add ${{ steps.validate-tag.outputs.release-version }}
63 git config user.email "[email protected]"
64 git config user.name "llvmbot"
65 git commit -a -m "Add ${{ steps.validate-tag.outputs.release-version }} documentation"
66git push https://${{ secrets.WWW_RELEASES_TOKEN }}@github.com/${{ github.repository_owner }}/www-r…
/llvm-project-15.0.7/flang/
H A D.drone.star10 …t install -y clang-8 cmake ninja-build lld-8 llvm-8-dev libc++-8-dev libc++abi-8-dev libz-dev git",
11 … "git clone --depth=1 -b f18 https://github.com/flang-compiler/f18-llvm-project.git llvm-project",
36 "apt-get update && apt-get install -y cmake ninja-build llvm-dev libz-dev git",
37 … "git clone --depth=1 -b f18 https://github.com/flang-compiler/f18-llvm-project.git llvm-project",
/llvm-project-15.0.7/openmp/
H A D.gitignore2 # This file specifies intentionally untracked files that git should ignore.
3 # See: http://www.kernel.org/pub/software/scm/git/docs/gitignore.html
5 # This file is intentionally different from the output of `git svn show-ignore`,
14 # Merge files created by git.
/llvm-project-15.0.7/third-party/
H A Dupdate_benchmark.sh12 git clone https://github.com/google/benchmark.git
13 rm -rf benchmark/.git*
/llvm-project-15.0.7/polly/docs/
H A DTipsAndTricks.rst7 …- `General reference to git-svn workflow <https://stackoverflow.com/questions/190431/is-git-svn-dc…
51 git repository is explained here
52 `<https://www.metaltoad.com/blog/beginners-guide-git-bisect-process-elimination>`_.
54 `<https://www.metaltoad.com/blog/mechanizing-git-bisect-bug-hunting-lazy>`_.
/llvm-project-15.0.7/lldb/
H A D.gitignore2 # The file specifies intentionally untracked files that git should ignore.
3 # See: http://www.kernel.org/pub/software/scm/git/docs/gitignore.html
5 # This file is intentionally different from the output of `git svn show-ignore`,
14 # Merge files created by git.
/llvm-project-15.0.7/llvm/test/DebugInfo/Inputs/
H A Dfission-hash-local2.ll15 …_plus_plus_14, file: !1, producer: "clang version 11.0.0 (git@github.com:llvm/llvm-project.git edc…
21 !6 = !{!"clang version 11.0.0 (git@github.com:llvm/llvm-project.git edc3f4f02e54c2ae1067f60f6a0ed6c…
/llvm-project-15.0.7/polly/lib/External/isl/doc/
H A DSubmittingPatches1 [Mostly copied from git's SubmittingPatches]
6 - check for unnecessary whitespace with "git diff --check"
15 - if you want your work included in isl.git, add a
25 - use "git format-patch -M" to create the patch
27 - send a single patch per mail, e.g., using git-send-email(1)
42 git-send-email(1), please test it first by sending email
/llvm-project-15.0.7/lld/
H A D.gitignore2 # This file specifies intentionally untracked files that git should ignore.
3 # See: http://www.kernel.org/pub/software/scm/git/docs/gitignore.html
11 # Merge files created by git.
/llvm-project-15.0.7/utils/arcanist/
H A Dclang-format.sh21 if ! git rev-parse --git-dir >/dev/null; then
55 git diff-index -U0 "${arc_base_commit}" "${src_file}" \
/llvm-project-15.0.7/llvm/
H A D.gitignore2 # This file specifies intentionally untracked files that git should ignore.
3 # See: http://www.kernel.org/pub/software/scm/git/docs/gitignore.html
5 # This file is intentionally different from the output of `git svn show-ignore`,
65 # Merge files created by git.

12345678910>>...17