Searched refs:git (Results 1 - 25 of 136) sorted by relevance

123456

/netbsd-current/external/gpl3/gcc/dist/contrib/
H A Dgit-fetch-vendor.sh7 git ls-remote ${upstream} "*/vendors/*" | sed -r "s:.*/vendors/([^/]+)/.*:\1:"|sort|uniq
14 upstream=`git config --get "gcc-config.upstream"`
17 echo "Config gcc-config.upstream not set, run contrib/gcc-git-customization"
48 echo "setting up git to fetch vendor ${vendor} to remotes/vendors/${vendor}"
49 url=$(git config --get "remote.${upstream}.url")
50 pushurl=$(git config --get "remote.${upstream}.pushurl")
51 git config "remote.vendors/${vendor}.url" "${url}"
54 git config "remote.vendors/${vendor}.pushurl" "${pushurl}"
56 git config --replace-all "remote.vendors/${vendor}.fetch" "+refs/vendors/${vendor}/heads/*:refs/remotes/vendors/${vendor}/*" "refs/vendors/${vendor}/heads"
57 git confi
[all...]
H A Dgcc-git-customization.sh3 # Script to add some local git customizations suitable for working
4 # with the GCC git repository
20 # Add a git command to find the git commit equivalent to legacy SVN revision NNN
21 git config alias.svn-rev '!f() { rev=$1; shift; git log --all --grep="^From-SVN: r\\?$rev\\b" "${@}"; } ; f'
23 # Add git commands to convert git commit to monotonically increasing revision number
25 git config alias.gcc-descr '!f() { "`git re
[all...]
H A Dgit-add-user-branch.sh6 # contrib/git-add-user-branch.sh [<personal-prefix>/]<branch-name> <base>
14 echo "contrib/gcc-git-customization.sh"
23 userpfx=$(git config --get "gcc-config.userpfx")
24 user=$(git config --get "gcc-config.user")
41 git push users/${userpfx} ${start}:refs/users/${user}/heads/${branch}
42 git fetch -q users/${userpfx}
43 git branch ${userpfx}/${branch} remotes/users/${userpfx}/${branch}
46 echo " git push users/${userpfx} ${userpfx}/${branch}"
H A Dprepare-commit-msg41 if ! git diff --cached --quiet; then
52 if [ "$(git config gcc-config.mklog-hook-type)" = "smart-amend" ]; then
54 f=$(mktemp /tmp/git-commit.XXXXXX) || exit 1
55 git log -1 --pretty=email HEAD > $f
57 git $cmd >> $f
74 DIFF_FILE=$(git config gcc-config.diff-file)
81 git $cmd | $tee | git gcc-mklog $GCC_MKLOG_ARGS -c "$COMMIT_MSG_FILE"
H A Dgit-undescr.sh5 o=$(git config --get gcc-config.upstream);
10 h=$(git rev-parse --verify --quiet ${o:-origin}/releases/gcc-$r);
11 test -z $h && h=$(git rev-parse --verify --quiet ${o:-origin}/master);
12 p=$(git describe --all --match 'basepoints/gcc-'$r $h | sed -n 's,^tags/,,;s,^basepoints/gcc-[0-9][0-9]*-\([0-9][0-9]*\)-g[0-9a-f]*$,\1,p;s,^basepoints/gcc-[0-9][0-9]*$,0,p');
13 git rev-parse --verify $h~$(expr $p - $n);
H A Dgit-descr.sh3 # Script to describe a GCC revision based on git hash
21 r=$(git describe --all --match 'basepoints/gcc-[0-9]*' $c | sed -n 's,^tags/,,;s,^basepoints/gcc-\([0-9][0-9]*\)-\([0-9][0-9]*\)-g[0-9a-f]*$,r\1-\2,p;s,^basepoints/gcc-\([0-9][0-9]*\)$,r\1-0,p');
23 r=$(git describe --all --abbrev=40 --match 'basepoints/gcc-[0-9]*' $c | sed -n 's,^tags/,,;s,^basepoints/gcc-,r,p')
25 r=$(git describe --all --abbrev=14 --match 'basepoints/gcc-[0-9]*' $c | sed -n 's,^tags/,,;s,^basepoints/gcc-,r,p')
26 expr ${r:-no} : 'r[0-9]\+$' >/dev/null && r=${r}-0-g$(git rev-parse $c);
29 o=$(git config --get gcc-config.upstream);
31 if git rev-parse --verify --quiet ${o:-origin}/releases/gcc-$rr >/dev/null; then
36 git merge-base --is-ancestor $c ${o:-origin}/$m && echo ${r};
H A Dgit-add-vendor-branch.sh6 # contrib/git-add-vendor-branch.sh <vendor>/<branch-name> <base>
13 echo "<vendor> must have already been set up using contrib/git-fetch-vendor.sh"
34 url=$(git config --get "remote.vendors/${vendor}.url"||true)
41 git branch --no-track ${vendor}/${branch} ${start}
42 git push vendors/${vendor} ${vendor}/${branch}:refs/vendors/${vendor}/heads/${branch}
43 git fetch -q vendors/${vendor}
44 git branch --set-upstream-to=remotes/vendors/${vendor}/${branch} ${vendor}/$branch
48 echo "git push vendors/${vendor} ${vendor}/${branch}"
/netbsd-current/external/gpl3/gcc.old/dist/contrib/
H A Dgit-fetch-vendor.sh7 git ls-remote ${upstream} "*/vendors/*" | sed -r "s:.*/vendors/([^/]+)/.*:\1:"|sort|uniq
14 upstream=`git config --get "gcc-config.upstream"`
17 echo "Config gcc-config.upstream not set, run contrib/gcc-git-customization"
48 echo "setting up git to fetch vendor ${vendor} to remotes/vendors/${vendor}"
49 url=$(git config --get "remote.${upstream}.url")
50 pushurl=$(git config --get "remote.${upstream}.pushurl")
51 git config "remote.vendors/${vendor}.url" "${url}"
54 git config "remote.vendors/${vendor}.pushurl" "${pushurl}"
56 git config --replace-all "remote.vendors/${vendor}.fetch" "+refs/vendors/${vendor}/heads/*:refs/remotes/vendors/${vendor}/*" "refs/vendors/${vendor}/heads"
57 git confi
[all...]
H A Dgcc-git-customization.sh3 # Script to add some local git customizations suitable for working
4 # with the GCC git repository
20 # Add a git command to find the git commit equivalent to legacy SVN revision NNN
21 git config alias.svn-rev '!f() { rev=$1; shift; git log --all --grep="^From-SVN: r\\?$rev\\b" "${@}"; } ; f'
23 # Add git commands to convert git commit to monotonically increasing revision number
25 git config alias.gcc-descr '!f() { "`git re
[all...]
H A Dgit-add-user-branch.sh6 # contrib/git-add-user-branch.sh [<personal-prefix>/]<branch-name> <base>
14 echo "contrib/gcc-git-customization.sh"
23 userpfx=$(git config --get "gcc-config.userpfx")
24 user=$(git config --get "gcc-config.user")
41 git push users/${userpfx} ${start}:refs/users/${user}/heads/${branch}
42 git fetch -q users/${userpfx}
43 git branch ${userpfx}/${branch} remotes/users/${userpfx}/${branch}
46 echo " git push users/${userpfx} ${userpfx}/${branch}"
H A Dgit-undescr.sh5 o=$(git config --get gcc-config.upstream);
10 h=$(git rev-parse --verify --quiet ${o:-origin}/releases/gcc-$r);
11 test -z $h && h=$(git rev-parse --verify --quiet ${o:-origin}/master);
12 p=$(git describe --all --match 'basepoints/gcc-'$r $h | sed -n 's,^\(tags/\)\?basepoints/gcc-[0-9]\+-\([0-9]\+\)-g[0-9a-f]*$,\2,p;s,^\(tags/\)\?basepoints/gcc-[0-9]\+$,0,p');
13 git rev-parse --verify $h~$(expr $p - $n);
H A Dgit-descr.sh3 # Script to describe a GCC revision based on git hash
21 r=$(git describe --all --match 'basepoints/gcc-[0-9]*' $c | sed -n 's,^\(tags/\)\?basepoints/gcc-\([0-9]\+\)-\([0-9]\+\)-g[0-9a-f]*$,r\2-\3,p;s,^\(tags/\)\?basepoints/gcc-\([0-9]\+\)$,r\2-0,p');
23 r=$(git describe --all --abbrev=40 --match 'basepoints/gcc-[0-9]*' $c | sed -n 's,^\(tags/\)\?basepoints/gcc-,r,p')
25 r=$(git describe --all --abbrev=14 --match 'basepoints/gcc-[0-9]*' $c | sed -n 's,^\(tags/\)\?basepoints/gcc-,r,p');
26 expr match ${r:-no} 'r[0-9]\+$' >/dev/null && r=${r}-0-g$(git rev-parse $c);
29 o=$(git config --get gcc-config.upstream);
31 if git rev-parse --verify --quiet ${o:-origin}/releases/gcc-$rr >/dev/null; then
36 git merge-base --is-ancestor $c ${o:-origin}/$m && echo ${r};
H A Dgit-add-vendor-branch.sh6 # contrib/git-add-vendor-branch.sh <vendor>/<branch-name> <base>
13 echo "<vendor> must have already been set up using contrib/git-fetch-vendor.sh"
34 url=$(git config --get "remote.vendors/${vendor}.url"||true)
41 git branch --no-track ${vendor}/${branch} ${start}
42 git push vendors/${vendor} ${vendor}/${branch}:refs/vendors/${vendor}/heads/${branch}
43 git fetch -q vendors/${vendor}
44 git branch --set-upstream-to=remotes/vendors/${vendor}/${branch} ${vendor}/$branch
48 echo "git push vendors/${vendor} ${vendor}/${branch}"
/netbsd-current/external/apache2/llvm/dist/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
/netbsd-current/external/apache2/llvm/dist/llvm/utils/git/
H A Darcfilter.sh4 git log -1 --pretty=%B | \
7 git commit --amend --date=now -F -
/netbsd-current/external/bsd/openldap/dist/doc/devel/variadic_debug/
H A Dscript.sh42 git add "$PATCH_DIR"
43 git commit -m "ITS#8731 Add the documentation and scripts"
45 git am "$PATCH_DIR/00-fixes.patch"
46 git am "$PATCH_DIR/01-logging.patch"
47 git am "$PATCH_DIR/02-manual.patch"
53 git apply --index --directory libraries/libldap "$PATCH_DIR/03-libldap_Debug.patch"
54 git commit -m "ITS#8731 Apply $PATCH_DIR/03-libldap_Debug.cocci"
60 git apply --index "$PATCH_DIR/04-variadic.patch"
61 git commit -m "ITS#8731 Apply $PATCH_DIR/04-variadic.cocci"
63 git a
[all...]
/netbsd-current/external/gpl2/dtc/dist/scripts/
H A Dsetlocalversion12 # Check for git and a git repo.
13 if head=`git rev-parse --verify HEAD 2>/dev/null`; then
15 if git name-rev --tags HEAD | grep -E '^HEAD[[:space:]]+(.*~[0-9]*|undefined)$' > /dev/null; then
20 if git diff-index HEAD | read dummy; then
/netbsd-current/external/mit/libcbor/dist/misc/hooks/
H A Dpre-commit8 if [[ $(git -C .. diff --cached --name-only) == *"index.html.erb"* ]]; then
11 git -C .. add $(pwd)/index.html
17 MODIFIED_UNSTAGED=$(git -C . diff --name-only)
18 MODIFIED_STAGED=$(git -C . diff --name-only --cached)
22 git add ${MODIFIED_STAGED}
24 if [[ ${MODIFIED_UNSTAGED} != $(git -C . diff --name-only) ]]; then
/netbsd-current/external/lgpl3/mpfr/dist/
H A Dversion-ext.sh15 if [ "x`git rev-parse --is-inside-work-tree 2> /dev/null`" != xtrue ]; then
28 # creating a branch, so that "git diff <branch>-root" shows commits done
33 git tag --contains | $SED -n 's/-root$//p' > excluded-branches
34 gitb=`git branch --format='%(refname:short)' --contains | \
38 gitc=`git rev-list --count HEAD`
39 gith=`git rev-parse --short HEAD`
40 gitm=`git update-index -q --refresh; git diff-index --name-only HEAD`
46 # for the "git diff-index --name-only HEAD" solution, but this
51 # suggesting "git updat
[all...]
/netbsd-current/external/bsd/libc++/
H A Dprepare-import.sh11 rm -rf .git CMakeLists.txt */CMakeLists.txt src/doxygen_config
/netbsd-current/external/mit/libcbor/dist/
H A Drelease.sh64 git add docs/doxygen
65 git commit -m "[Release] Add current API documentation"
68 git tag $TAG_NAME
69 git push origin
81 git add index.html
82 git commit -m "[Release] Update website to $TAG_NAME"
83 git push
H A D.travis-qemu.sh16 GUEST_DEPENDENCIES="cmake git clang-format"
62 git clone git://git.cryptomilk.org/projects/cmocka.git
78 git clone git://git.cryptomilk.org/projects/cmocka.git
104 git clon
[all...]
/netbsd-current/external/apache2/llvm/dist/libcxx/utils/google-benchmark/
H A D.travis-libcxx-setup.sh9 git clone --depth=1 https://github.com/llvm-mirror/llvm.git llvm-source
10 git clone --depth=1 https://github.com/llvm-mirror/libcxx.git llvm-source/projects/libcxx
11 git clone --depth=1 https://github.com/llvm-mirror/libcxxabi.git llvm-source/projects/libcxxabi
/netbsd-current/external/bsd/pam-u2f/dist/build-aux/ci/
H A Dbuild-osx.sh4 BUILDROOT="$(git rev-parse --show-toplevel)"
8 git clone git://github.com/pjk/libcbor
10 git checkout v0.5.0
18 git clone git://github.com/Yubico/libfido2
/netbsd-current/external/gpl3/autoconf/dist/build-aux/
H A Dgit-version-gen20 # This script is derived from GIT-VERSION-GEN from GIT: http://git.or.cz/.
22 # - from a git repository in which the "git describe" command below
24 # - from a non-git-repo directory containing a .tarball-version file, which
25 # presumes this script is invoked like "./git-version-gen .tarball-version".
32 # the last time autoconf was run, and used by git-version-gen. Must not
33 # be present in either $(srcdir) or $(builddir) for git-version-gen to
58 # m4_esyscmd([build-aux/git-version-gen .tarball-version]),
75 version="git-version-gen $scriptversion
88 --prefix prefix of git tag
[all...]

Completed in 155 milliseconds

123456