/freebsd/tools/tools/git/ |
H A D | arcgit | 27 # This script is used to submit a series of git commits to Differential. Each 31 # review_D2185 branch, commit your change with "git commit --fixup HEAD". To\ 36 # together, and then do a git rebase -ik to meld the code review fixes into the 38 # git. 62 echo "Create review for '`git show $commit -s --oneline`'" 69 git checkout $commit > /dev/null || error "Could not checkout $commit" 71 arc_dir="$(git rev-parse --git-dir)/arc" 74 git show -s --format='%B' HEAD > $arc_msg 90 headline="$(git show $commit -s --format=%s)" 99 git branch review_${phab_id}_base HEAD~ [all …]
|
H A D | git-arc.1 | 31 .Nm "git arc" 32 .Nd a wrapper to improve integration between git and arcanist 61 Phabricator reviews based on git commits. 67 assumes a one-to-one relationship between git commits and 132 .Nm git-config : 151 In this mode, the list of git revisions to use 167 $ git commit -m "kern: Rewrite in Rust" 168 $ git arc create HEAD 174 $ git commit --amend 175 $ git arc update HEAD [all …]
|
H A D | git-arc.sh | 33 # - main (for git arc stage) 57 Usage: git arc [-vy] <command> <arguments> 67 Create or manage FreeBSD Phabricator reviews based on git commits. There 68 is a one-to one relationship between git commits and Differential revisions, 92 $ git commit -m "kern: Rewrite in Rust" 93 $ git arc create HEAD 95 $ git commit --amend 96 $ git arc update HEAD 98 $ git arc stage HEAD 99 $ git push freebsd HEAD:main [all …]
|
H A D | HOWTO | 2 This directory contains tools intended to help committers use git when 8 automatic creation of a series of Differential reviews from a series of git 11 1. Create a series of commits in git. Each commit will be a separate review, so 30 2. Create your reviews by running this command in your git repo: 47 $ git checkout review_D1234 52 $ git commit --fixup HEAD 64 directly because we will be using git's autosquash feature in the next step, 77 series of commits that are ready to be pushed to git. 82 $ git checkout myfeature_dev 84 git merge $branch || git mergetool -y || break; done [all …]
|
/freebsd/sys/contrib/device-tree/scripts/ |
H A D | git-filter-branch | 5 # Minimal changes to "port" it to core-git (c) Johannes Schindelin, 2007 14 EMPTY_TREE=$(git hash-object -t tree /dev/null) 49 if test $# = 3 && test "$1" = $(git rev-parse "$3^{tree}"); then 54 git commit-tree "$@" 89 WARNING: git-filter-branch has a glut of gotchas generating mangled history 91 alternative filtering tool such as 'git filter-repo' 92 (https://github.com/newren/git-filter-repo/) instead. See the 109 . git-sh-setup 115 tempdir=.git-rewrite 212 filter_commit='git commit-tree "$@"';; [all …]
|
H A D | cronjob | 7 UPSTREAM_GIT="git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git" 12 echo "`pwd`: does not appear to be a device-tree.git" 1>&2 28 if ! git show-ref --quiet --verify refs/tags/v${LATEST_VERSION} ; then 31 if ! git show-ref --quiet --verify refs/tags/v${LATEST_VERSION}-dts ; then 38 REF=$(git show-ref --verify refs/heads/${branch}) 67 git checkout master 70 git fetch --tags "$UPSTREAM_GIT" master 78 #git push --dry-run origin filter-state-split upstream/dts upstream/master 79 #git push --dry-run origin --tags 86 git checkout -b ${TESTBRANCH} origin/master [all …]
|
H A D | filter.sh | 3 # git branch -D upstream/rewritten-prev upstream/master upstream/rewritten filter-state-split 14 LAST=$(git show-ref -s refs/heads/$UPSTREAM_MASTER||true) 22 FETCH_HEAD=$(git rev-parse FETCH_HEAD) 28 rm -f .git/refs/original/refs/heads/${UPSTREAM_REWRITTEN} 30 git branch -f $UPSTREAM_REWRITTEN FETCH_HEAD 32 PATH=$(git --exec-path):$PATH $SCRIPTS/git-filter-branch --force \ 36 --parent-filter 'sed "s/-p //g" | xargs -r git show-branch --independent | sed "s/\</-p /g"' \ 40 git branch -f $UPSTREAM_MASTER FETCH_HEAD
|
/freebsd/contrib/one-true-awk/ |
H A D | FREEBSD-upgrade | 6 git@github.com:onetrueawk/awk.git 16 % git worktree create ../ota vendor/one-true-awk 19 % git pull --rebase 20 % git branch --show-current 22 % git show-ref HEAD 28 % git add * 29 % git commit -m"Import awk YYYYMMDD hash f9affa922c5e" # 12 places 30 % git commit --amend 37 % git tag -a -s vendor/one-true-awk/f9affa92 # 8 places 39 % git push --follow-tags freebsd vendor/one-true-awk [all …]
|
/freebsd/contrib/unifdef/scripts/ |
H A D | upload.sh | 6 git gc --aggressive 7 git update-server-info 8 git push --all github 9 git push --tags github 12 echo "selectively remove C preprocessor conditionals" >.git/description 13 echo "Homepage: <a href='http://dotat.at/prog/unifdef'>http://dotat.at/prog/unifdef</a>" >.git/READ… 15 touch .git/git-daemon-export-ok 16 rsync --recursive --links --delete .git/ chiark:public-git/unifdef.git/
|
/freebsd/contrib/tzcode/ |
H A D | CONTRIBUTING | 38 ## Sample Git workflow for developing contributions 40 If you use Git the following workflow may be helpful: 44 git clone https://github.com/eggert/tz.git 49 git checkout main 50 git pull 55 git checkout -b mybranch 57 * Sleuth by using 'git blame'. For example, when fixing data for 58 Africa/Sao_Tome, if the command 'git blame africa' outputs a line 78 git ad [all...] |
/freebsd/contrib/tzdata/ |
H A D | CONTRIBUTING | 38 ## Sample Git workflow for developing contributions 40 If you use Git the following workflow may be helpful: 44 git clone https://github.com/eggert/tz.git 49 git checkout main 50 git pull 55 git checkout -b mybranch 57 * Sleuth by using 'git blame'. For example, when fixing data for 58 Africa/Sao_Tome, if the command 'git blame africa' outputs a line 78 git add northamerica 79 git commit [all …]
|
/freebsd/crypto/openssl/ |
H A D | FREEBSD-upgrade | 4 These instructions assume you have a clone of the FreeBSD git repo 7 origin pointing to git(repo).freebsd.org/src.git. 12 $ git worktree add -b vendor/openssl-X.Y ../vendor/openssl-X.Y freebsd/vendor/openssl-X.Y 31 $ rsync --exclude .git --delete -av ../openssl-X.Y.Z/ . 35 $ git add -A 39 $ git commit -m "openssl: Vendor import of OpenSSL X.Y.Z" 43 $ git tag -a -m "Tag OpenSSL X.Y.Z" vendor/openssl/X.Y.Z 47 $ git push freebsd vendor/openssl-X.Y 48 $ git push freebsd vendor/openssl/X.Y.Z 50 Note the second "git push" command is used to push the tag, which is [all …]
|
/freebsd/crypto/openssl/test/ |
H A D | README-external.md | 16 $ git submodule update --init 40 You will need a git checkout of krb5 at the top level: 42 $ git clone https://github.com/krb5/krb5 48 $ git checkout krb5-1.15.1-final 74 You will need a git checkout of gost-engine at the top level: 76 $ git submodule update --init 97 $ git submodule update --init --recursive 102 $ git pull origin master 104 - Go to root directory, there should be a new git status: 107 $ git status [all …]
|
/freebsd/contrib/libxo/ |
H A D | Makefile.am | 61 && git add libxo.html \ 62 && git add ${PACKAGE_VERSION}/html \ 63 && git commit -m 'new docs' \ 65 && git push origin gh-pages ) ; true 74 && git add ${PACKAGE_VERSION}/xohtml \ 75 && git commit -m 'new xohtml files' \ 77 && git push origin gh-pages ) ; true 83 git clone https://github.com/Juniper/${PACKAGE_NAME}.wiki.git wiki 86 git clone https://github.com/Juniper/${PACKAGE_NAME}.git \ 112 && git add ${GH_PACKAGING_DIR} \ [all …]
|
/freebsd/crypto/openssh/ |
H A D | FREEBSD-upgrade | 4 These instructions assume you have a clone of the FreeBSD git repo 7 origin pointing to git(repo).freebsd.org/src.git. 26 $ git worktree add ../vendor/openssh freebsd/vendor/openssh 28 $ rsync --archive --delete --exclude=.git /path/to/openssh-X.YpZ/ ./ 32 $ git add -A 36 $ git commit -m "Vendor import of OpenSSH X.YpZ" 40 $ git tag -a -m "Tag OpenSSH X.YpZ" vendor/openssh/X.YpZ 44 $ git push freebsd vendor/openssh 45 $ git push freebsd vendor/openssh/X.YpZ 47 Note the second "git push" command is used to push the tag, which is [all …]
|
/freebsd/share/man/man7/ |
H A D | development.7 | 65 .Lk https://git.FreeBSD.org/src.git 69 .Lk ssh://git@gitrepo.FreeBSD.org/src.git 71 There is also a list of public, read-only Git mirrors at: 79 back to STABLE, which refers to Git branches such as 123 .Bl -compact -tag -width "/usr/src/tools/tools/git/git-arc.sh" 127 .It Pa /usr/src/tools/tools/git/git-arc.sh 134 git clone https://git.FreeBSD.org/src.git src 193 .Xr git 1 ,
|
/freebsd/contrib/bmake/ |
H A D | import.sh | 6 GIT=${GIT:-git} 78 (${GIT} diff FILES | sed -n '/^[+-][^+-]/p'; \ 79 ${GIT} diff mk/FILES | sed -n '/^[+-][^+-]/s,.,&mk/,p' ) > $TF.diffs 99 $GIT diff --staged $C | 111 $GIT add -A 113 $GIT diff --staged > $SB/tmp/bmake-import.diff 115 { echo "$GIT tag -a -m \"Tag bmake/$VERSION\" vendor/NetBSD/bmake/$VERSION" 116 echo "echo \"When ready do: $GIT pus [all...] |
/freebsd/share/zoneinfo/ |
H A D | Makefile | 7 # $ git worktree add ../tzdata vendor/tzdata 10 # (check with "git status" and "git diff" if it all makes sense) 11 # $ git add -A 12 # $ git commit -m "Import tzdata 20XXX" 13 # $ git tag -a -m "Tag import of tzdata 20XXX" vendor/tzdata/tzdata20XXX 14 # $ git push --follow-tags freebsd vendor/tzdata 19 # $ git subtree merge -P contrib/tzdata vendor/tzdata 21 # $ git push freebsd HEAD:main 25 # $ git checkout -b freebsd/stable/12 stable-12 26 # $ git cherry-pick -x [hash of merge commit to main] -m 1 --edit [all …]
|
/freebsd/sys/contrib/openzfs/contrib/intel_qat/patch/ |
H A D | 0001-timespec.diff | 5 git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=c766d1472c70d25ad475cf56042af… 6 git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=412c53a680a97cb1ae2c0ab60230e… 11 diff --git a/quickassist/lookaside/access_layer/src/sample_code/performance/framework/linux/kernel_… 24 diff --git a/quickassist/qat/compat/qat_compat.h b/quickassist/qat/compat/qat_compat.h
|
/freebsd/contrib/file/magic/Magdir/ |
H A D | revision | 13 # Type: Git bundles (git-bundle) 15 0 string #\ v2\ git\ bundle\n Git bundle 17 # Type: Git pack index 19 0 string \377tOc Git pack index 22 # Type: Git index file 24 0 string DIRC Git index
|
H A D | pack | 6 # Type: Git pack 9 # URL: http://fileformats.archiveteam.org/wiki/Git 10 # reference: https://github.com/git/git/blob/master/Documentation/technical/pack-format.txt 13 # the first byte of which is never 0, while the first byte of the Git pack 16 # test for major version. Git 2017 accepts version number 2 or 3 21 # but in git binary 22 >>9 default x Git pack 23 !:mime application/x-git 32 # GRR: line below is too general as it matches also "Git pack" in ./revision 36 # To skip "Git pack" version 0 test for root directory object like
|
H A D | git | 3 # $File: git,v 1.2 2020/08/09 16:57:15 christos Exp $ 4 # git: file(1) magic for Git objects 7 >5 regex [0-9a-f]+ Git blob %s 10 >5 regex [0-9a-f]+ Git tree %s 13 >7 regex [0-9a-f]+ Git commit %s
|
/freebsd/tools/tools/git/hooks/ |
H A D | prepare-commit-msg | 3 # prepare-commit-msg: Prepare a commit message upon `git commit` for the 8 # Install by copying into the git hooks directory - for example, 9 # cp tools/tools/git/hooks/prepare-commit-msg .git/hooks/ 13 # It appears git invokes this script for interactive rebase but does 26 outfile=$(mktemp /tmp/freebsd-git-commit.XXXXXXXX) 30 # 1. The beginning of the git-provided template (up to the first comment-only 35 # 3. The remainder of the git-provided template (from the first comment-only 62 # \`git commit --author\` if someone besides the committer sent in the change.
|
/freebsd/contrib/jemalloc/ |
H A D | FREEBSD-upgrade | 8 # - devel/git 55 JEMALLOC_REPO=https://github.com/jemalloc/jemalloc.git 62 bare_repo="${tmpdir}/jemalloc_bare.git" 63 work="jemalloc_work.git" 65 namespace_repo="${tmpdir}/jemalloc_namespace.git" 72 git clone --bare ${JEMALLOC_REPO} ${bare_repo} 76 git fetch origin ${rev} 85 git clone ${bare_repo} ${repo} 91 git checkout ${rev} 142 git add -A [all …]
|
/freebsd/contrib/libarchive/ |
H A D | FREEBSD-upgrade | 3 The source code is pulled with git: 5 git clone git://github.com/libarchive/libarchive.git 7 The git branch for imports is named vendor/libarchive. 19 https://docs.freebsd.org/en/articles/committers-guide/#vendor-import-git
|