[ Avaa Bypassed ]




Upload:

Command:

hmhc3928@18.191.205.190: ~ $
#!/bin/sh

USAGE='[help|start|bad|good|skip|next|reset|visualize|replay|log|run]'
LONG_USAGE='git bisect help
	print this long help message.
git bisect start [--no-checkout] [<bad> [<good>...]] [--] [<pathspec>...]
	reset bisect state and start bisection.
git bisect bad [<rev>]
	mark <rev> a known-bad revision.
git bisect good [<rev>...]
	mark <rev>... known-good revisions.
git bisect skip [(<rev>|<range>)...]
	mark <rev>... untestable revisions.
git bisect next
	find next bisection to test and check it out.
git bisect reset [<commit>]
	finish bisection search and go back to commit.
git bisect visualize
	show bisect status in gitk.
git bisect replay <logfile>
	replay bisection log.
git bisect log
	show bisect log.
git bisect run <cmd>...
	use <cmd>... to automatically bisect.

Please use "git help bisect" to get the full man page.'

OPTIONS_SPEC=
. git-sh-setup
. git-sh-i18n

_x40='[0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f]'
_x40="$_x40$_x40$_x40$_x40$_x40$_x40$_x40$_x40"

bisect_head()
{
	if test -f "$GIT_DIR/BISECT_HEAD"
	then
		echo BISECT_HEAD
	else
		echo HEAD
	fi
}

bisect_autostart() {
	test -s "$GIT_DIR/BISECT_START" || {
		gettextln "You need to start by \"git bisect start\"" >&2
		if test -t 0
		then
			# TRANSLATORS: Make sure to include [Y] and [n] in your
			# translation. The program will only accept English input
			# at this point.
			gettext "Do you want me to do it for you [Y/n]? " >&2
			read yesno
			case "$yesno" in
			[Nn]*)
				exit ;;
			esac
			bisect_start
		else
			exit 1
		fi
	}
}

bisect_start() {
	#
	# Check for one bad and then some good revisions.
	#
	has_double_dash=0
	for arg; do
		case "$arg" in --) has_double_dash=1; break ;; esac
	done
	orig_args=$(git rev-parse --sq-quote "$@")
	bad_seen=0
	eval=''
	if test "z$(git rev-parse --is-bare-repository)" != zfalse
	then
		mode=--no-checkout
	else
		mode=''
	fi
	while [ $# -gt 0 ]; do
		arg="$1"
		case "$arg" in
		--)
			shift
			break
		;;
		--no-checkout)
			mode=--no-checkout
			shift ;;
		--*)
			die "$(eval_gettext "unrecognised option: '\$arg'")" ;;
		*)
			rev=$(git rev-parse -q --verify "$arg^{commit}") || {
				test $has_double_dash -eq 1 &&
				die "$(eval_gettext "'\$arg' does not appear to be a valid revision")"
				break
			}
			case $bad_seen in
			0) state='bad' ; bad_seen=1 ;;
			*) state='good' ;;
			esac
			eval="$eval bisect_write '$state' '$rev' 'nolog' &&"
			shift
			;;
		esac
	done

	#
	# Verify HEAD.
	#
	head=$(GIT_DIR="$GIT_DIR" git symbolic-ref -q HEAD) ||
	head=$(GIT_DIR="$GIT_DIR" git rev-parse --verify HEAD) ||
	die "$(gettext "Bad HEAD - I need a HEAD")"

	#
	# Check if we are bisecting.
	#
	start_head=''
	if test -s "$GIT_DIR/BISECT_START"
	then
		# Reset to the rev from where we started.
		start_head=$(cat "$GIT_DIR/BISECT_START")
		if test "z$mode" != "z--no-checkout"
		then
			git checkout "$start_head" -- ||
			die "$(eval_gettext "Checking out '\$start_head' failed. Try 'git bisect reset <validbranch>'.")"
		fi
	else
		# Get rev from where we start.
		case "$head" in
		refs/heads/*|$_x40)
			# This error message should only be triggered by
			# cogito usage, and cogito users should understand
			# it relates to cg-seek.
			[ -s "$GIT_DIR/head-name" ] &&
				die "$(gettext "won't bisect on seeked tree")"
			start_head="${head#refs/heads/}"
			;;
		*)
			die "$(gettext "Bad HEAD - strange symbolic ref")"
			;;
		esac
	fi

	#
	# Get rid of any old bisect state.
	#
	bisect_clean_state || exit

	#
	# Change state.
	# In case of mistaken revs or checkout error, or signals received,
	# "bisect_auto_next" below may exit or misbehave.
	# We have to trap this to be able to clean up using
	# "bisect_clean_state".
	#
	trap 'bisect_clean_state' 0
	trap 'exit 255' 1 2 3 15

	#
	# Write new start state.
	#
	echo "$start_head" >"$GIT_DIR/BISECT_START" && {
		test "z$mode" != "z--no-checkout" ||
		git update-ref --no-deref BISECT_HEAD "$start_head"
	} &&
	git rev-parse --sq-quote "$@" >"$GIT_DIR/BISECT_NAMES" &&
	eval "$eval true" &&
	echo "git bisect start$orig_args" >>"$GIT_DIR/BISECT_LOG" || exit
	#
	# Check if we can proceed to the next bisect state.
	#
	bisect_auto_next

	trap '-' 0
}

bisect_write() {
	state="$1"
	rev="$2"
	nolog="$3"
	case "$state" in
		bad)		tag="$state" ;;
		good|skip)	tag="$state"-"$rev" ;;
		*)		die "$(eval_gettext "Bad bisect_write argument: \$state")" ;;
	esac
	git update-ref "refs/bisect/$tag" "$rev" || exit
	echo "# $state: $(git show-branch $rev)" >>"$GIT_DIR/BISECT_LOG"
	test -n "$nolog" || echo "git bisect $state $rev" >>"$GIT_DIR/BISECT_LOG"
}

is_expected_rev() {
	test -f "$GIT_DIR/BISECT_EXPECTED_REV" &&
	test "$1" = $(cat "$GIT_DIR/BISECT_EXPECTED_REV")
}

check_expected_revs() {
	for _rev in "$@"; do
		if ! is_expected_rev "$_rev"
		then
			rm -f "$GIT_DIR/BISECT_ANCESTORS_OK"
			rm -f "$GIT_DIR/BISECT_EXPECTED_REV"
			return
		fi
	done
}

bisect_skip() {
	all=''
	for arg in "$@"
	do
		case "$arg" in
		*..*)
			revs=$(git rev-list "$arg") || die "$(eval_gettext "Bad rev input: \$arg")" ;;
		*)
			revs=$(git rev-parse --sq-quote "$arg") ;;
		esac
		all="$all $revs"
	done
	eval bisect_state 'skip' $all
}

bisect_state() {
	bisect_autostart
	state=$1
	case "$#,$state" in
	0,*)
		die "$(gettext "Please call 'bisect_state' with at least one argument.")" ;;
	1,bad|1,good|1,skip)
		rev=$(git rev-parse --verify $(bisect_head)) ||
			die "$(gettext "Bad rev input: $(bisect_head)")"
		bisect_write "$state" "$rev"
		check_expected_revs "$rev" ;;
	2,bad|*,good|*,skip)
		shift
		eval=''
		for rev in "$@"
		do
			sha=$(git rev-parse --verify "$rev^{commit}") ||
				die "$(eval_gettext "Bad rev input: \$rev")"
			eval="$eval bisect_write '$state' '$sha'; "
		done
		eval "$eval"
		check_expected_revs "$@" ;;
	*,bad)
		die "$(gettext "'git bisect bad' can take only one argument.")" ;;
	*)
		usage ;;
	esac
	bisect_auto_next
}

bisect_next_check() {
	missing_good= missing_bad=
	git show-ref -q --verify refs/bisect/bad || missing_bad=t
	test -n "$(git for-each-ref "refs/bisect/good-*")" || missing_good=t

	case "$missing_good,$missing_bad,$1" in
	,,*)
		: have both good and bad - ok
		;;
	*,)
		# do not have both but not asked to fail - just report.
		false
		;;
	t,,good)
		# have bad but not good.  we could bisect although
		# this is less optimum.
		gettextln "Warning: bisecting only with a bad commit." >&2
		if test -t 0
		then
			# TRANSLATORS: Make sure to include [Y] and [n] in your
			# translation. The program will only accept English input
			# at this point.
			gettext "Are you sure [Y/n]? " >&2
			read yesno
			case "$yesno" in [Nn]*) exit 1 ;; esac
		fi
		: bisect without good...
		;;
	*)

		if test -s "$GIT_DIR/BISECT_START"
		then
			gettextln "You need to give me at least one good and one bad revisions.
(You can use \"git bisect bad\" and \"git bisect good\" for that.)" >&2
		else
			gettextln "You need to start by \"git bisect start\".
You then need to give me at least one good and one bad revisions.
(You can use \"git bisect bad\" and \"git bisect good\" for that.)" >&2
		fi
		exit 1 ;;
	esac
}

bisect_auto_next() {
	bisect_next_check && bisect_next || :
}

bisect_next() {
	case "$#" in 0) ;; *) usage ;; esac
	bisect_autostart
	bisect_next_check good

	# Perform all bisection computation, display and checkout
	git bisect--helper --next-all $(test -f "$GIT_DIR/BISECT_HEAD" && echo --no-checkout)
	res=$?

	# Check if we should exit because bisection is finished
	if test $res -eq 10
	then
		bad_rev=$(git show-ref --hash --verify refs/bisect/bad)
		bad_commit=$(git show-branch $bad_rev)
		echo "# first bad commit: $bad_commit" >>"$GIT_DIR/BISECT_LOG"
		exit 0
	elif test $res -eq 2
	then
		echo "# only skipped commits left to test" >>"$GIT_DIR/BISECT_LOG"
		good_revs=$(git for-each-ref --format="--not %(objectname)" "refs/bisect/good-*")
		for skipped in $(git rev-list refs/bisect/bad $good_revs)
		do
			skipped_commit=$(git show-branch $skipped)
			echo "# possible first bad commit: $skipped_commit" >>"$GIT_DIR/BISECT_LOG"
		done
		exit $res
	fi

	# Check for an error in the bisection process
	test $res -ne 0 && exit $res

	return 0
}

bisect_visualize() {
	bisect_next_check fail

	if test $# = 0
	then
		if test -n "${DISPLAY+set}${SESSIONNAME+set}${MSYSTEM+set}${SECURITYSESSIONID+set}" &&
			type gitk >/dev/null 2>&1
		then
			set gitk
		else
			set git log
		fi
	else
		case "$1" in
		git*|tig) ;;
		-*)	set git log "$@" ;;
		*)	set git "$@" ;;
		esac
	fi

	eval '"$@"' --bisect -- $(cat "$GIT_DIR/BISECT_NAMES")
}

bisect_reset() {
	test -s "$GIT_DIR/BISECT_START" || {
		gettextln "We are not bisecting."
		return
	}
	case "$#" in
	0) branch=$(cat "$GIT_DIR/BISECT_START") ;;
	1) git rev-parse --quiet --verify "$1^{commit}" > /dev/null || {
			invalid="$1"
			die "$(eval_gettext "'\$invalid' is not a valid commit")"
		}
		branch="$1" ;;
	*)
		usage ;;
	esac

	if ! test -f "$GIT_DIR/BISECT_HEAD" && ! git checkout "$branch" --
	then
		die "$(eval_gettext "Could not check out original HEAD '\$branch'.
Try 'git bisect reset <commit>'.")"
	fi
	bisect_clean_state
}

bisect_clean_state() {
	# There may be some refs packed during bisection.
	git for-each-ref --format='%(refname) %(objectname)' refs/bisect/\* |
	while read ref hash
	do
		git update-ref -d $ref $hash || exit
	done
	rm -f "$GIT_DIR/BISECT_EXPECTED_REV" &&
	rm -f "$GIT_DIR/BISECT_ANCESTORS_OK" &&
	rm -f "$GIT_DIR/BISECT_LOG" &&
	rm -f "$GIT_DIR/BISECT_NAMES" &&
	rm -f "$GIT_DIR/BISECT_RUN" &&
	# Cleanup head-name if it got left by an old version of git-bisect
	rm -f "$GIT_DIR/head-name" &&
	git update-ref -d --no-deref BISECT_HEAD &&
	# clean up BISECT_START last
	rm -f "$GIT_DIR/BISECT_START"
}

bisect_replay () {
	file="$1"
	test "$#" -eq 1 || die "$(gettext "No logfile given")"
	test -r "$file" || die "$(eval_gettext "cannot read \$file for replaying")"
	bisect_reset
	while read git bisect command rev
	do
		test "$git $bisect" = "git bisect" -o "$git" = "git-bisect" || continue
		if test "$git" = "git-bisect"
		then
			rev="$command"
			command="$bisect"
		fi
		case "$command" in
		start)
			cmd="bisect_start $rev"
			eval "$cmd" ;;
		good|bad|skip)
			bisect_write "$command" "$rev" ;;
		*)
			die "$(gettext "?? what are you talking about?")" ;;
		esac
	done <"$file"
	bisect_auto_next
}

bisect_run () {
	bisect_next_check fail

	while true
	do
		command="$@"
		eval_gettextln "running \$command"
		"$@"
		res=$?

		# Check for really bad run error.
		if [ $res -lt 0 -o $res -ge 128 ]
		then
			eval_gettextln "bisect run failed:
exit code \$res from '\$command' is < 0 or >= 128" >&2
			exit $res
		fi

		# Find current state depending on run success or failure.
		# A special exit code of 125 means cannot test.
		if [ $res -eq 125 ]
		then
			state='skip'
		elif [ $res -gt 0 ]
		then
			state='bad'
		else
			state='good'
		fi

		# We have to use a subshell because "bisect_state" can exit.
		( bisect_state $state > "$GIT_DIR/BISECT_RUN" )
		res=$?

		cat "$GIT_DIR/BISECT_RUN"

		if sane_grep "first bad commit could be any of" "$GIT_DIR/BISECT_RUN" \
			> /dev/null
		then
			gettextln "bisect run cannot continue any more" >&2
			exit $res
		fi

		if [ $res -ne 0 ]
		then
			eval_gettextln "bisect run failed:
'bisect_state \$state' exited with error code \$res" >&2
			exit $res
		fi

		if sane_grep "is the first bad commit" "$GIT_DIR/BISECT_RUN" > /dev/null
		then
			gettextln "bisect run success"
			exit 0;
		fi

	done
}

bisect_log () {
	test -s "$GIT_DIR/BISECT_LOG" || die "$(gettext "We are not bisecting.")"
	cat "$GIT_DIR/BISECT_LOG"
}

case "$#" in
0)
	usage ;;
*)
	cmd="$1"
	shift
	case "$cmd" in
	help)
		git bisect -h ;;
	start)
		bisect_start "$@" ;;
	bad|good)
		bisect_state "$cmd" "$@" ;;
	skip)
		bisect_skip "$@" ;;
	next)
		# Not sure we want "next" at the UI level anymore.
		bisect_next "$@" ;;
	visualize|view)
		bisect_visualize "$@" ;;
	reset)
		bisect_reset "$@" ;;
	replay)
		bisect_replay "$@" ;;
	log)
		bisect_log ;;
	run)
		bisect_run "$@" ;;
	*)
		usage ;;
	esac
esac

Filemanager

Name Type Size Permission Actions
mergetools Folder 0755
.git-add.40009 File 1.46 MB 0755
.git-annotate.40009 File 1.46 MB 0755
.git-apply.40009 File 1.46 MB 0755
.git-archive.40009 File 1.46 MB 0755
.git-bisect--helper.40009 File 1.46 MB 0755
.git-blame.40009 File 1.46 MB 0755
.git-branch.40009 File 1.46 MB 0755
.git-bundle.40009 File 1.46 MB 0755
.git-cat-file.40009 File 1.46 MB 0755
.git-check-attr.40009 File 1.46 MB 0755
.git-check-ignore.40009 File 1.46 MB 0755
.git-check-ref-format.40009 File 1.46 MB 0755
.git-checkout-index.40009 File 1.46 MB 0755
.git-checkout.40009 File 1.46 MB 0755
.git-cherry-pick.40009 File 1.46 MB 0755
.git-cherry.40009 File 1.46 MB 0755
.git-clean.40009 File 1.46 MB 0755
.git-clone.40009 File 1.46 MB 0755
.git-column.40009 File 1.46 MB 0755
.git-commit-tree.40009 File 1.46 MB 0755
.git-commit.40009 File 1.46 MB 0755
.git-config.40009 File 1.46 MB 0755
.git-count-objects.40009 File 1.46 MB 0755
.git-credential.40009 File 1.46 MB 0755
.git-describe.40009 File 1.46 MB 0755
.git-diff-files.40009 File 1.46 MB 0755
.git-diff-index.40009 File 1.46 MB 0755
.git-diff-tree.40009 File 1.46 MB 0755
.git-diff.40009 File 1.46 MB 0755
.git-fast-export.40009 File 1.46 MB 0755
.git-fetch-pack.40009 File 1.46 MB 0755
.git-fetch.40009 File 1.46 MB 0755
.git-fmt-merge-msg.40009 File 1.46 MB 0755
.git-for-each-ref.40009 File 1.46 MB 0755
.git-format-patch.40009 File 1.46 MB 0755
.git-fsck-objects.40009 File 1.46 MB 0755
.git-fsck.40009 File 1.46 MB 0755
.git-gc.40009 File 1.46 MB 0755
.git-get-tar-commit-id.40009 File 1.46 MB 0755
.git-grep.40009 File 1.46 MB 0755
.git-hash-object.40009 File 1.46 MB 0755
.git-help.40009 File 1.46 MB 0755
.git-index-pack.40009 File 1.46 MB 0755
.git-init-db.40009 File 1.46 MB 0755
.git-init.40009 File 1.46 MB 0755
.git-log.40009 File 1.46 MB 0755
.git-ls-files.40009 File 1.46 MB 0755
.git-ls-remote.40009 File 1.46 MB 0755
.git-ls-tree.40009 File 1.46 MB 0755
.git-mailinfo.40009 File 1.46 MB 0755
.git-mailsplit.40009 File 1.46 MB 0755
.git-merge-base.40009 File 1.46 MB 0755
.git-merge-file.40009 File 1.46 MB 0755
.git-merge-index.40009 File 1.46 MB 0755
.git-merge-ours.40009 File 1.46 MB 0755
.git-merge-recursive.40009 File 1.46 MB 0755
.git-merge-subtree.40009 File 1.46 MB 0755
.git-merge-tree.40009 File 1.46 MB 0755
.git-merge.40009 File 1.46 MB 0755
.git-mktag.40009 File 1.46 MB 0755
.git-mktree.40009 File 1.46 MB 0755
.git-mv.40009 File 1.46 MB 0755
.git-name-rev.40009 File 1.46 MB 0755
.git-notes.40009 File 1.46 MB 0755
.git-pack-objects.40009 File 1.46 MB 0755
.git-pack-redundant.40009 File 1.46 MB 0755
.git-pack-refs.40009 File 1.46 MB 0755
.git-patch-id.40009 File 1.46 MB 0755
.git-peek-remote.40009 File 1.46 MB 0755
.git-prune-packed.40009 File 1.46 MB 0755
.git-prune.40009 File 1.46 MB 0755
.git-push.40009 File 1.46 MB 0755
.git-read-tree.40009 File 1.46 MB 0755
.git-receive-pack.40009 File 1.46 MB 0755
.git-reflog.40009 File 1.46 MB 0755
.git-remote-ext.40009 File 1.46 MB 0755
.git-remote-fd.40009 File 1.46 MB 0755
.git-remote-ftps.40009 File 820.52 KB 0755
.git-remote-http.40009 File 820.52 KB 0755
.git-remote-https.40009 File 820.52 KB 0755
.git-remote.40009 File 1.46 MB 0755
.git-replace.40009 File 1.46 MB 0755
.git-repo-config.40009 File 1.46 MB 0755
.git-rerere.40009 File 1.46 MB 0755
.git-reset.40009 File 1.46 MB 0755
.git-rev-list.40009 File 1.46 MB 0755
.git-rev-parse.40009 File 1.46 MB 0755
.git-revert.40009 File 1.46 MB 0755
.git-rm.40009 File 1.46 MB 0755
.git-send-pack.40009 File 1.46 MB 0755
.git-shell.40009 File 717.95 KB 0755
.git-shortlog.40009 File 1.46 MB 0755
.git-show-branch.40009 File 1.46 MB 0755
.git-show-ref.40009 File 1.46 MB 0755
.git-show.40009 File 1.46 MB 0755
.git-stage.40009 File 1.46 MB 0755
.git-status.40009 File 1.46 MB 0755
.git-stripspace.40009 File 1.46 MB 0755
.git-submodule--helper.40009 File 1.46 MB 0755
.git-symbolic-ref.40009 File 1.46 MB 0755
.git-tag.40009 File 1.46 MB 0755
.git-tar-tree.40009 File 1.46 MB 0755
.git-unpack-file.40009 File 1.46 MB 0755
.git-unpack-objects.40009 File 1.46 MB 0755
.git-update-index.40009 File 1.46 MB 0755
.git-update-ref.40009 File 1.46 MB 0755
.git-update-server-info.40009 File 1.46 MB 0755
.git-upload-archive.40009 File 1.46 MB 0755
.git-upload-pack.40009 File 791.44 KB 0755
.git-var.40009 File 1.46 MB 0755
.git-verify-pack.40009 File 1.46 MB 0755
.git-verify-tag.40009 File 1.46 MB 0755
.git-whatchanged.40009 File 1.46 MB 0755
.git-write-tree.40009 File 1.46 MB 0755
.git.40009 File 1.46 MB 0755
git File 1.46 MB 0755
git-add File 1.46 MB 0755
git-add--interactive File 35.8 KB 0755
git-am File 21.84 KB 0755
git-annotate File 1.46 MB 0755
git-apply File 1.46 MB 0755
git-archive File 1.46 MB 0755
git-bisect File 11.71 KB 0755
git-bisect--helper File 1.46 MB 0755
git-blame File 1.46 MB 0755
git-branch File 1.46 MB 0755
git-bundle File 1.46 MB 0755
git-cat-file File 1.46 MB 0755
git-check-attr File 1.46 MB 0755
git-check-ignore File 1.46 MB 0755
git-check-ref-format File 1.46 MB 0755
git-checkout File 1.46 MB 0755
git-checkout-index File 1.46 MB 0755
git-cherry File 1.46 MB 0755
git-cherry-pick File 1.46 MB 0755
git-clean File 1.46 MB 0755
git-clone File 1.46 MB 0755
git-column File 1.46 MB 0755
git-commit File 1.46 MB 0755
git-commit-tree File 1.46 MB 0755
git-config File 1.46 MB 0755
git-count-objects File 1.46 MB 0755
git-credential File 1.46 MB 0755
git-credential-cache File 717.83 KB 0755
git-credential-cache--daemon File 730.32 KB 0755
git-credential-store File 726.01 KB 0755
git-describe File 1.46 MB 0755
git-diff File 1.46 MB 0755
git-diff-files File 1.46 MB 0755
git-diff-index File 1.46 MB 0755
git-diff-tree File 1.46 MB 0755
git-difftool File 13.41 KB 0755
git-difftool--helper File 1.86 KB 0755
git-fast-export File 1.46 MB 0755
git-fast-import File 754.91 KB 0755
git-fetch File 1.46 MB 0755
git-fetch-pack File 1.46 MB 0755
git-filter-branch File 11.33 KB 0755
git-fmt-merge-msg File 1.46 MB 0755
git-for-each-ref File 1.46 MB 0755
git-format-patch File 1.46 MB 0755
git-fsck File 1.46 MB 0755
git-fsck-objects File 1.46 MB 0755
git-gc File 1.46 MB 0755
git-get-tar-commit-id File 1.46 MB 0755
git-grep File 1.46 MB 0755
git-hash-object File 1.46 MB 0755
git-help File 1.46 MB 0755
git-http-backend File 730.63 KB 0755
git-http-fetch File 816.54 KB 0755
git-http-push File 832.82 KB 0755
git-imap-send File 738.79 KB 0755
git-index-pack File 1.46 MB 0755
git-init File 1.46 MB 0755
git-init-db File 1.46 MB 0755
git-log File 1.46 MB 0755
git-lost-found File 554 B 0755
git-ls-files File 1.46 MB 0755
git-ls-remote File 1.46 MB 0755
git-ls-tree File 1.46 MB 0755
git-mailinfo File 1.46 MB 0755
git-mailsplit File 1.46 MB 0755
git-merge File 1.46 MB 0755
git-merge-base File 1.46 MB 0755
git-merge-file File 1.46 MB 0755
git-merge-index File 1.46 MB 0755
git-merge-octopus File 2.16 KB 0755
git-merge-one-file File 3.4 KB 0755
git-merge-ours File 1.46 MB 0755
git-merge-recursive File 1.46 MB 0755
git-merge-resolve File 944 B 0755
git-merge-subtree File 1.46 MB 0755
git-merge-tree File 1.46 MB 0755
git-mergetool File 8.18 KB 0755
git-mergetool--lib File 7.6 KB 0644
git-mktag File 1.46 MB 0755
git-mktree File 1.46 MB 0755
git-mv File 1.46 MB 0755
git-name-rev File 1.46 MB 0755
git-notes File 1.46 MB 0755
git-pack-objects File 1.46 MB 0755
git-pack-redundant File 1.46 MB 0755
git-pack-refs File 1.46 MB 0755
git-parse-remote File 2.13 KB 0644
git-patch-id File 1.46 MB 0755
git-peek-remote File 1.46 MB 0755
git-prune File 1.46 MB 0755
git-prune-packed File 1.46 MB 0755
git-pull File 7.68 KB 0755
git-push File 1.46 MB 0755
git-quiltimport File 3.27 KB 0755
git-read-tree File 1.46 MB 0755
git-rebase File 13.26 KB 0755
git-rebase--am File 1.43 KB 0644
git-rebase--interactive File 25.09 KB 0644
git-rebase--merge File 3.01 KB 0644
git-receive-pack File 1.46 MB 0755
git-reflog File 1.46 MB 0755
git-relink File 4.09 KB 0755
git-remote File 1.46 MB 0755
git-remote-ext File 1.46 MB 0755
git-remote-fd File 1.46 MB 0755
git-remote-ftp File 824.59 KB 0755
git-remote-ftps File 824.59 KB 0755
git-remote-http File 824.59 KB 0755
git-remote-https File 824.59 KB 0755
git-remote-testpy File 7.26 KB 0755
git-repack File 4.87 KB 0755
git-replace File 1.46 MB 0755
git-repo-config File 1.46 MB 0755
git-request-pull File 3.57 KB 0755
git-rerere File 1.46 MB 0755
git-reset File 1.46 MB 0755
git-rev-list File 1.46 MB 0755
git-rev-parse File 1.46 MB 0755
git-revert File 1.46 MB 0755
git-rm File 1.46 MB 0755
git-send-pack File 1.46 MB 0755
git-sh-i18n File 1.92 KB 0644
git-sh-i18n--envsubst File 24.16 KB 0755
git-sh-setup File 6.32 KB 0644
git-shell File 722.04 KB 0755
git-shortlog File 1.46 MB 0755
git-show File 1.46 MB 0755
git-show-branch File 1.46 MB 0755
git-show-index File 717.8 KB 0755
git-show-ref File 1.46 MB 0755
git-stage File 1.46 MB 0755
git-stash File 12.61 KB 0755
git-status File 1.46 MB 0755
git-stripspace File 1.46 MB 0755
git-submodule File 30.31 KB 0755
git-submodule--helper File 1.46 MB 0755
git-subtree File 15.08 KB 0755
git-symbolic-ref File 1.46 MB 0755
git-tag File 1.46 MB 0755
git-tar-tree File 1.46 MB 0755
git-unpack-file File 1.46 MB 0755
git-unpack-objects File 1.46 MB 0755
git-update-index File 1.46 MB 0755
git-update-ref File 1.46 MB 0755
git-update-server-info File 1.46 MB 0755
git-upload-archive File 1.46 MB 0755
git-upload-pack File 795.48 KB 0755
git-var File 1.46 MB 0755
git-verify-pack File 1.46 MB 0755
git-verify-tag File 1.46 MB 0755
git-web--browse File 4.12 KB 0755
git-whatchanged File 1.46 MB 0755
git-write-tree File 1.46 MB 0755