X7ROOT File Manager
Current Path:
/usr/share/doc/git-1.8.3.1/contrib/examples
usr
/
share
/
doc
/
git-1.8.3.1
/
contrib
/
examples
/
📁
..
📄
README
(167 B)
📄
builtin-fetch--tool.c
(12.73 KB)
📄
git-checkout.sh
(7.44 KB)
📄
git-clean.sh
(2.21 KB)
📄
git-clone.sh
(12.4 KB)
📄
git-commit.sh
(14.04 KB)
📄
git-fetch.sh
(8.9 KB)
📄
git-gc.sh
(594 B)
📄
git-ls-remote.sh
(2.48 KB)
📄
git-merge-ours.sh
(338 B)
📄
git-merge.sh
(14.08 KB)
📄
git-notes.sh
(2.65 KB)
📄
git-remote.perl
(10.14 KB)
📄
git-rerere.perl
(6.05 KB)
📄
git-reset.sh
(2.25 KB)
📄
git-resolve.sh
(2.65 KB)
📄
git-revert.sh
(4.58 KB)
📄
git-svnimport.perl
(24.39 KB)
📄
git-svnimport.txt
(5.26 KB)
📄
git-tag.sh
(3.93 KB)
📄
git-verify-tag.sh
(749 B)
Editing: git-verify-tag.sh
#!/bin/sh USAGE='<tag>' SUBDIRECTORY_OK='Yes' . git-sh-setup verbose= while test $# != 0 do case "$1" in -v|--v|--ve|--ver|--verb|--verbo|--verbos|--verbose) verbose=t ;; *) break ;; esac shift done if [ "$#" != "1" ] then usage fi type="$(git cat-file -t "$1" 2>/dev/null)" || die "$1: no such object." test "$type" = tag || die "$1: cannot verify a non-tag object of type $type." case "$verbose" in t) git cat-file -p "$1" | sed -n -e '/^-----BEGIN PGP SIGNATURE-----/q' -e p ;; esac trap 'rm -f "$GIT_DIR/.tmp-vtag"' 0 git cat-file tag "$1" >"$GIT_DIR/.tmp-vtag" || exit 1 sed -n -e ' /^-----BEGIN PGP SIGNATURE-----$/q p ' <"$GIT_DIR/.tmp-vtag" | gpg --verify "$GIT_DIR/.tmp-vtag" - || exit 1 rm -f "$GIT_DIR/.tmp-vtag"
Upload File
Create Folder