/llvm-project/clang/utils/analyzer/projects/ |
H A D | projects.json | 5 "source": "git", 6 "origin": "https://github.com/jarro2783/cxxopts.git", 13 "source": "git", 14 "origin": "https://github.com/erincatto/box2d.git", 21 "source": "git", 22 "origin": "https://github.com/codeplea/tinyexpr.git", 29 "source": "git", 30 "origin": "https://github.com/symengine/symengine.git", 37 "source": "git", 38 "origin": "https://github.com/nsf/termbox.git", [all …]
|
/llvm-project/llvm/docs/Proposals/ |
H A D | GitHubMove.rst | 22 infrastructure) will continue to work with a Git-based LLVM. 30 from SVN hosted on our own servers to Git hosted on GitHub. We are not proposing 37 Why Git, and Why GitHub? 44 and Git mirror on a voluntary basis. The LLVM Foundation sponsors the server and 54 space, Git server, code browsing, forking facilities, etc) for free. 56 Why Git? 59 Many new coders nowadays start with Git, and a lot of people have never used 64 Git is also the version control many LLVM developers use. Despite the 65 sources being stored in a SVN server, these developers are already using Git 66 through the Git-SVN integration. [all …]
|
/llvm-project/llvm/docs/ |
H A D | GitBisecting.rst | 8 ``git bisect`` is a useful tool for finding which revision caused a bug. 10 This document describes how to use ``git bisect``. In particular, while LLVM 21 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 29 git will check out a revision in between. Try to reproduce your problem at 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 [all …]
|
H A D | GitHub.rst | 40 unblock is to rename (``git -m <old name> <new name>``), and then checkout the branch 58 You can interact with GitHub in several ways: via git command line tools, 60 `GitHub CLI <https://cli.github.com>`_. This guide will cover the git command line 95 your user, it will change the git "remotes" so that "origin" points 107 `built-in support for fixups <https://git-scm.com/docs/git-commit#Documentation/git-commit.txt---fixupamendrewordltcommitgt>`_ 108 in git. 112 You can do this manually with an interactive git rebase or with GitHub's 120 git remot [all...] |
H A D | Contributing.rst | 58 * conform to the :doc:`CodingStandards`. You can use the `clang-format-diff.py`_ or `git-clang-format`_ tools to automatically format your patch properly. 66 formatted properly. We use ``clang-format`` for this, which has git integration 67 through the ``git-clang-format`` script. On some systems, it may already be 74 % git clang-format HEAD~1 81 % git commit --amend -a 86 If you don't already have ``clang-format`` or ``git clang-format`` installed 88 the git integration can be run from 89 ``clang/tools/clang-format/git-clang-format``. 130 For developers to commit changes from Git 153 Please ask for help if you're having trouble with your particular git workflo 136 git_pre_push_hookFor developers to commit changes from Git global() argument 138 Git pre-push hookFor developers to commit changes from Git global() argument [all...] |
/llvm-project/lldb/scripts/lldb-test-qemu/ |
H A D | setup.sh | 9 echo -e " --clean\t\t\tRemove qemu.git and linux.git directories in current directory." 43 sudo apt install git python3-dev libsdl1.2-dev build-essential libpixman-1-dev 46 check_dir_exists "qemu.git" 47 if [ ! -d "qemu.git" ]; then 48 git clone --depth 1 https://gitlab.com/qemu-project/qemu.git qemu.git 51 cd qemu.git 60 sudo apt install git bison flex build-essential libssl-dev bc 62 check_dir_exists "linux.git" 64 if [ ! -d "linux.git" ]; then 65 git clone --depth 1 \ [all …]
|
/llvm-project/llvm/utils/release/ |
H A D | export.sh | 26 Export the Git sources and build tarballs from them. 31 [-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 ) 85 # in the specified git ref. 87 …release=$(git -C $llvm_src_dir show $snapshot:cmake/Modules/LLVMVersion.cmake | grep -ioP 'set\(\s… [all …]
|
/llvm-project/llvm/utils/gn/build/ |
H A D | write_vcsrevision.py | 34 "--write-git-rev", 36 help="if set, writes git revision, else writes #undef", 49 git, use_shell = which("git"), False 50 if not git: 51 git = which("git.exe") 52 if not git: 53 git, use_shell = which("git.bat"), True 56 [git, "rev-parse", "--git-dir"], cwd=LLVM_DIR, shell=use_shell 62 print('.git dir not found at "%s"' % git_dir, file=sys.stderr) 67 [git, "rev-parse", "--short", "HEAD"], cwd=git_dir, shell=use_shell [all …]
|
/llvm-project/llvm/utils/docker/scripts/ |
H A D | checkout.sh | 16 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 27 'git cherry-pick \$rev)'. 68 echo "Checking out git revision $LLVM_GIT_REV." 71 echo "Checking out latest git revision." 86 EMAIL="someone@somewhere.net" git cherry-pick "$CHERRY_REV" 94 # Get the sources from git. 95 echo "Checking out sources from git" 99 echo "Checking out https://github.com/llvm/llvm-project.git t [all...] |
/llvm-project/polly/lib/External/ |
H A D | update-isl.sh | 5 # http://repo.or.cz/isl.git 12 git clone --recursive http://repo.or.cz/isl.git $GITDIR 14 (cd $GITDIR && git checkout --detach $1) 15 (cd $GITDIR && git submodule update --recursive) 23 # - Strip git source versioning 26 (cd $GITDIR && git describe > $GITDIR/GIT_HEAD_ID) 28 rm -rf $GITDIR/.git 29 rm -rf $GITDIR/imath/.git 32 # IMPORTANT: Remember to `git add` any new files in LLVM's versioning
|
/llvm-project/clang/tools/clang-format/ |
H A D | git-clang-format | 3 # ===- git-clang-format - ClangFormat Git Integration -------*- python -*--=== # 12 clang-format git integration 15 This file provides a clang-format integration for git. Put it somewhere in your 16 path and ensure that it is executable. Then, "git clang-format" will invoke 20 git clang-format -h 36 "git clang-format [OPTIONS] [<commit>] [<commit>|--staged] [--] [<file>...]" 45 To format staged changes, i.e everything that's been `git add`ed: 46 git clang-format 49 git clan [all...] |
/llvm-project/bolt/test/X86/ |
H A D | dwarf5-type-unit-no-cu-str-offset-table.test | 14 # PRE-BOLT-NEXT: "clang version 18.0.0git (git@github.com:llvm/llvm-project.git 44dc1e0baae7c4b8a02ba06dcf396d3d452aa873)" 20 # PRE-BOLT-NEXT: "clang version 18.0.0git (git@github.com:llvm/llvm-project.git 44dc1e0baae7c4b8a02ba06dcf396d3d452aa873)" 38 # POST-BOLT-NEXT: "clang version 18.0.0git (git@github.com:llvm/llvm-project.git 44dc1e0baae7c4b8a02ba06dcf396d3d452aa873)" 53 # POST-BOLT-NEXT: "clang version 18.0.0git (gi [all...] |
H A D | dwarf5-df-types-modify-dwo-name.test | 53 ; BOLT-NEXT: "clang version 18.0.0git (git@github.com:ayermolo/llvm-project.git db35fa8fc524127079662802c4735dbf397f86d0)" 73 ; BOLT-NEXT: "clang version 18.0.0git (git@github.com:ayermolo/llvm-project.git db35fa8fc524127079662802c4735dbf397f86d0)" 129 ; BOLT-PATH-NEXT: "clang version 18.0.0git (git@github.com:ayermolo/llvm-project.git db35fa8fc524127079662802c4735dbf397f86d0)" 149 ; BOLT-PATH-NEXT: "clang version 18.0.0git (gi [all...] |
/llvm-project/llvm/utils/git/ |
H A D | pre-push.py | 3 # ======- pre-push - LLVM Git Help Integration ---------*- python -*--========# 12 pre-push git hook integration 18 ln -sf ../../llvm/utils/git/pre-push.py .git/hooks/pre-push 20 From the git doc: 22 The pre-push hook runs during git push, after the remote refs have been 129 def git(*cmd, **kwargs): 130 return shell(["git"] + list(cmd), **kwargs) 134 commits = git("rev-list", range).splitlines() 168 # Check that the remote commit exists, otherwise let git procee 140 def git(*cmd, **kwargs): global() function [all...] |
H A D | requirements_formatting.txt |
|
/llvm-project/bolt/utils/ |
H A D | nfc-check-setup.py | 12 # Run 'git symbolic-ref -q --short HEAD || git rev-parse --short HEAD' 13 cmd_ref = "git symbolic-ref -q --short HEAD" 19 cmd_rev = "git rev-parse --short HEAD" 76 shlex.split("git status --porcelain"), 84 subprocess.run(shlex.split("git stash push -u"), cwd=source_dir) 86 subprocess.run(shlex.split(f"git checkout -f {args.cmp_rev}"), cwd=source_dir) 106 subprocess.run(shlex.split("git stash pop"), cwd=source_dir) 107 subprocess.run(shlex.split(f"git checkout {old_ref}"), cwd=source_dir) 112 f"git checkout {old_ref}\n"
|
/llvm-project/clang/utils/analyzer/ |
H A D | SATestUpdateDiffs.py | 18 def update_reference_results(project: ProjectInfo, git: bool = False): 48 # Remove reference results: in git, and then again for a good measure 49 # with rm, as git might not remove things fully if there are empty 51 if git: 52 run_cmd(f"git rm -r -q '{ref_results_path}'") 68 if git: 69 run_cmd(f"git add '{ref_results_path}'")
|
/llvm-project/polly/lib/External/isl/ |
H A D | README | 16 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/polly/lib/External/isl/doc/ |
H A D | SubmittingPatches | 1 [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/llvm/test/tools/dsymutil/Inputs/ |
H A D | inline.ll | 17 …: DW_LANG_C11, file: !1, producer: "clang version 18.0.0git (git@github.com:llvm/llvm-project.git … 25 !8 = !{!"clang version 18.0.0git (git@github.com:llvm/llvm-project.git 29ee66f4a0967e43a035f147c960…
|
/llvm-project/llvm/tools/spirv-tools/ |
H A D | CMakeLists.txt | 21 GIT_REPOSITORY https://github.com/KhronosGroup/SPIRV-Tools.git 26 DOWNLOAD_COMMAND git clone https://github.com/KhronosGroup/SPIRV-Tools.git SPIRVTools && 28 ${Python3_EXECUTABLE} utils/git-sync-deps 29 UPDATE_COMMAND git pull origin main && 30 ${Python3_EXECUTABLE} utils/git-sync-deps
|
/llvm-project/llvm/utils/ |
H A D | revert_checker.py | 10 """Checks for reverts of commits across a given git commit. 130 ["git", "-C", git_dir, "rev-parse", sha], 148 "git", 160 # It might not be the first line if git feels complainy. 169 assert sha is not None, "git died?" 187 "git", 199 ["git", "-C", git_dir, "rev-parse", ref], 216 ["git", "-C", git_dir, "merge-base", ref_a, ref_b], 224 git_log = ["git", "log", "--format=%H %s", f"{min_ref}..{root}"] 251 git_dir: git director [all...] |
/llvm-project/lldb/test/API/functionalities/inline-sourcefile/ |
H A D | inline.ll | 20 …: DW_LANG_C11, file: !1, producer: "clang version 18.0.0git (git@github.com:llvm/llvm-project.git … 28 !8 = !{!"clang version 18.0.0git (git@github.com:llvm/llvm-project.git 29ee66f4a0967e43a035f147c960…
|
/llvm-project/llvm/test/CodeGen/BPF/BTF/ |
H A D | extern-var-func2.ll | 36 !2 = distinct !DICompileUnit(language: DW_LANG_C11, file: !3, producer: "clang version 19.0.0git (git@github.com:llvm/llvm-project.git 0390a6803608e3a5314315b73740c2d3f5a5723f)", isOptimized: true, runtimeVersion: 0, emissionKind: FullDebug, globals: !4, splitDebugInlining: false, nameTableKind: None) 37 !3 = !DIFile(filename: "b.c", directory: "/home/nickz/llvm-project.git", checksumkind: CSK_MD5, checksum: "41cc17375f1261a0e072590833492553") 50 !16 = !{!"clang version 19.0.0git (git@github.com:llvm/llvm-project.git 0390a6803608e3a5314315b73740c2d3f5a5723f)"}
|
/llvm-project/third-party/benchmark/docs/ |
H A D | releasing.md | 8 * `git log $(git describe --abbrev=0 --tags)..HEAD` gives you the list of 26 * `git pull --tags` 27 * `git tag -a -f <tag> <tag>` 28 * `git push --force --tags origin`
|