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-gc.sh
#!/bin/sh # # Copyright (c) 2006, Shawn O. Pearce # # Cleanup unreachable files and optimize the repository. USAGE='[--prune]' SUBDIRECTORY_OK=Yes . git-sh-setup no_prune=: while test $# != 0 do case "$1" in --prune) no_prune= ;; --) usage ;; esac shift done case "$(git config --get gc.packrefs)" in notbare|"") test $(is_bare_repository) = true || pack_refs=true;; *) pack_refs=$(git config --bool --get gc.packrefs) esac test "true" != "$pack_refs" || git pack-refs --prune && git reflog expire --all && git-repack -a -d -l && $no_prune git prune && git rerere gc || exit
Upload File
Create Folder