404

[ Avaa Bypassed ]




Upload:

Command:

elspacio@3.147.127.54: ~ $
#!/bin/sh
#
# Copyright (c) Linus Torvalds, 2005
#
# This is the git per-file merge script, called with
#
#   $1 - original file SHA1 (or empty)
#   $2 - file in branch1 SHA1 (or empty)
#   $3 - file in branch2 SHA1 (or empty)
#   $4 - pathname in repository
#   $5 - original file mode (or empty)
#   $6 - file in branch1 mode (or empty)
#   $7 - file in branch2 mode (or empty)
#
# Handle some trivial cases.. The _really_ trivial cases have
# been handled already by git read-tree, but that one doesn't
# do any merges that might change the tree layout.

USAGE='<orig blob> <our blob> <their blob> <path>'
USAGE="$USAGE <orig mode> <our mode> <their mode>"
LONG_USAGE="usage: git merge-one-file $USAGE

Blob ids and modes should be empty for missing files."

SUBDIRECTORY_OK=Yes
. git-sh-setup
cd_to_toplevel
require_work_tree

if test $# != 7
then
	echo "$LONG_USAGE"
	exit 1
fi

case "${1:-.}${2:-.}${3:-.}" in
#
# Deleted in both or deleted in one and unchanged in the other
#
"$1.." | "$1.$1" | "$1$1.")
	if { test -z "$6" && test "$5" != "$7"; } ||
	   { test -z "$7" && test "$5" != "$6"; }
	then
		echo "ERROR: File $4 deleted on one branch but had its" >&2
		echo "ERROR: permissions changed on the other." >&2
		exit 1
	fi

	if test -n "$2"
	then
		echo "Removing $4"
	else
		# read-tree checked that index matches HEAD already,
		# so we know we do not have this path tracked.
		# there may be an unrelated working tree file here,
		# which we should just leave unmolested.  Make sure
		# we do not have it in the index, though.
		exec git update-index --remove -- "$4"
	fi
	if test -f "$4"
	then
		rm -f -- "$4" &&
		rmdir -p "$(expr "z$4" : 'z\(.*\)/')" 2>/dev/null || :
	fi &&
		exec git update-index --remove -- "$4"
	;;

#
# Added in one.
#
".$2.")
	# the other side did not add and we added so there is nothing
	# to be done, except making the path merged.
	exec git update-index --add --cacheinfo "$6" "$2" "$4"
	;;
"..$3")
	echo "Adding $4"
	if test -f "$4"
	then
		echo "ERROR: untracked $4 is overwritten by the merge." >&2
		exit 1
	fi
	git update-index --add --cacheinfo "$7" "$3" "$4" &&
		exec git checkout-index -u -f -- "$4"
	;;

#
# Added in both, identically (check for same permissions).
#
".$3$2")
	if test "$6" != "$7"
	then
		echo "ERROR: File $4 added identically in both branches," >&2
		echo "ERROR: but permissions conflict $6->$7." >&2
		exit 1
	fi
	echo "Adding $4"
	git update-index --add --cacheinfo "$6" "$2" "$4" &&
		exec git checkout-index -u -f -- "$4"
	;;

#
# Modified in both, but differently.
#
"$1$2$3" | ".$2$3")

	case ",$6,$7," in
	*,120000,*)
		echo "ERROR: $4: Not merging symbolic link changes." >&2
		exit 1
		;;
	*,160000,*)
		echo "ERROR: $4: Not merging conflicting submodule changes." >&2
		exit 1
		;;
	esac

	src1=$(git unpack-file $2)
	src2=$(git unpack-file $3)
	case "$1" in
	'')
		echo "Added $4 in both, but differently."
		orig=$(git unpack-file $(git hash-object /dev/null))
		;;
	*)
		echo "Auto-merging $4"
		orig=$(git unpack-file $1)
		;;
	esac

	git merge-file "$src1" "$orig" "$src2"
	ret=$?
	msg=
	if test $ret != 0 || test -z "$1"
	then
		msg='content conflict'
		ret=1
	fi

	# Create the working tree file, using "our tree" version from the
	# index, and then store the result of the merge.
	git checkout-index -f --stage=2 -- "$4" && cat "$src1" >"$4" || exit 1
	rm -f -- "$orig" "$src1" "$src2"

	if test "$6" != "$7"
	then
		if test -n "$msg"
		then
			msg="$msg, "
		fi
		msg="${msg}permissions conflict: $5->$6,$7"
		ret=1
	fi

	if test $ret != 0
	then
		echo "ERROR: $msg in $4" >&2
		exit 1
	fi
	exec git update-index -- "$4"
	;;

*)
	echo "ERROR: $4: Not handling case $1 -> $2 -> $3" >&2
	;;
esac
exit 1

Filemanager

Name Type Size Permission Actions
mergetools Folder 0755
git File 3.67 MB 0755
git-add File 3.67 MB 0755
git-am File 3.67 MB 0755
git-annotate File 3.67 MB 0755
git-apply File 3.67 MB 0755
git-archive File 3.67 MB 0755
git-bisect File 3.67 MB 0755
git-blame File 3.67 MB 0755
git-branch File 3.67 MB 0755
git-bugreport File 3.67 MB 0755
git-bundle File 3.67 MB 0755
git-cat-file File 3.67 MB 0755
git-check-attr File 3.67 MB 0755
git-check-ignore File 3.67 MB 0755
git-check-mailmap File 3.67 MB 0755
git-check-ref-format File 3.67 MB 0755
git-checkout File 3.67 MB 0755
git-checkout--worker File 3.67 MB 0755
git-checkout-index File 3.67 MB 0755
git-cherry File 3.67 MB 0755
git-cherry-pick File 3.67 MB 0755
git-clean File 3.67 MB 0755
git-clone File 3.67 MB 0755
git-column File 3.67 MB 0755
git-commit File 3.67 MB 0755
git-commit-graph File 3.67 MB 0755
git-commit-tree File 3.67 MB 0755
git-config File 3.67 MB 0755
git-contacts File 4.4 KB 0755
git-count-objects File 3.67 MB 0755
git-credential File 3.67 MB 0755
git-credential-cache File 3.67 MB 0755
git-credential-cache--daemon File 3.67 MB 0755
git-credential-netrc File 10.69 KB 0755
git-credential-store File 3.67 MB 0755
git-describe File 3.67 MB 0755
git-diagnose File 3.67 MB 0755
git-diff File 3.67 MB 0755
git-diff-files File 3.67 MB 0755
git-diff-index File 3.67 MB 0755
git-diff-tree File 3.67 MB 0755
git-difftool File 3.67 MB 0755
git-difftool--helper File 2.55 KB 0755
git-fast-export File 3.67 MB 0755
git-fast-import File 3.67 MB 0755
git-fetch File 3.67 MB 0755
git-fetch-pack File 3.67 MB 0755
git-filter-branch File 15.49 KB 0755
git-fmt-merge-msg File 3.67 MB 0755
git-for-each-ref File 3.67 MB 0755
git-for-each-repo File 3.67 MB 0755
git-format-patch File 3.67 MB 0755
git-fsck File 3.67 MB 0755
git-fsck-objects File 3.67 MB 0755
git-fsmonitor--daemon File 3.67 MB 0755
git-gc File 3.67 MB 0755
git-get-tar-commit-id File 3.67 MB 0755
git-grep File 3.67 MB 0755
git-hash-object File 3.67 MB 0755
git-help File 3.67 MB 0755
git-hook File 3.67 MB 0755
git-http-backend File 2.14 MB 0755
git-http-fetch File 2.17 MB 0755
git-http-push File 2.19 MB 0755
git-imap-send File 2.19 MB 0755
git-index-pack File 3.67 MB 0755
git-init File 3.67 MB 0755
git-init-db File 3.67 MB 0755
git-interpret-trailers File 3.67 MB 0755
git-log File 3.67 MB 0755
git-ls-files File 3.67 MB 0755
git-ls-remote File 3.67 MB 0755
git-ls-tree File 3.67 MB 0755
git-mailinfo File 3.67 MB 0755
git-mailsplit File 3.67 MB 0755
git-maintenance File 3.67 MB 0755
git-merge File 3.67 MB 0755
git-merge-base File 3.67 MB 0755
git-merge-file File 3.67 MB 0755
git-merge-index File 3.67 MB 0755
git-merge-octopus File 2.42 KB 0755
git-merge-one-file File 3.61 KB 0755
git-merge-ours File 3.67 MB 0755
git-merge-recursive File 3.67 MB 0755
git-merge-resolve File 1.2 KB 0755
git-merge-subtree File 3.67 MB 0755
git-merge-tree File 3.67 MB 0755
git-mergetool File 11.42 KB 0755
git-mergetool--lib File 10.48 KB 0644
git-mktag File 3.67 MB 0755
git-mktree File 3.67 MB 0755
git-multi-pack-index File 3.67 MB 0755
git-mv File 3.67 MB 0755
git-name-rev File 3.67 MB 0755
git-notes File 3.67 MB 0755
git-pack-objects File 3.67 MB 0755
git-pack-redundant File 3.67 MB 0755
git-pack-refs File 3.67 MB 0755
git-patch-id File 3.67 MB 0755
git-prune File 3.67 MB 0755
git-prune-packed File 3.67 MB 0755
git-pull File 3.67 MB 0755
git-push File 3.67 MB 0755
git-quiltimport File 3.61 KB 0755
git-range-diff File 3.67 MB 0755
git-read-tree File 3.67 MB 0755
git-rebase File 3.67 MB 0755
git-receive-pack File 3.67 MB 0755
git-reflog File 3.67 MB 0755
git-remote File 3.67 MB 0755
git-remote-ext File 3.67 MB 0755
git-remote-fd File 3.67 MB 0755
git-remote-ftp File 2.19 MB 0755
git-remote-ftps File 2.19 MB 0755
git-remote-http File 2.19 MB 0755
git-remote-https File 2.19 MB 0755
git-repack File 3.67 MB 0755
git-replace File 3.67 MB 0755
git-request-pull File 4.05 KB 0755
git-rerere File 3.67 MB 0755
git-reset File 3.67 MB 0755
git-restore File 3.67 MB 0755
git-rev-list File 3.67 MB 0755
git-rev-parse File 3.67 MB 0755
git-revert File 3.67 MB 0755
git-rm File 3.67 MB 0755
git-send-pack File 3.67 MB 0755
git-sh-i18n File 1.64 KB 0644
git-sh-i18n--envsubst File 2.13 MB 0755
git-sh-setup File 8.2 KB 0644
git-shell File 2.13 MB 0755
git-shortlog File 3.67 MB 0755
git-show File 3.67 MB 0755
git-show-branch File 3.67 MB 0755
git-show-index File 3.67 MB 0755
git-show-ref File 3.67 MB 0755
git-sparse-checkout File 3.67 MB 0755
git-stage File 3.67 MB 0755
git-stash File 3.67 MB 0755
git-status File 3.67 MB 0755
git-stripspace File 3.67 MB 0755
git-submodule File 10.26 KB 0755
git-submodule--helper File 3.67 MB 0755
git-switch File 3.67 MB 0755
git-symbolic-ref File 3.67 MB 0755
git-tag File 3.67 MB 0755
git-unpack-file File 3.67 MB 0755
git-unpack-objects File 3.67 MB 0755
git-update-index File 3.67 MB 0755
git-update-ref File 3.67 MB 0755
git-update-server-info File 3.67 MB 0755
git-upload-archive File 3.67 MB 0755
git-upload-pack File 3.67 MB 0755
git-var File 3.67 MB 0755
git-verify-commit File 3.67 MB 0755
git-verify-pack File 3.67 MB 0755
git-verify-tag File 3.67 MB 0755
git-version File 3.67 MB 0755
git-web--browse File 4.3 KB 0755
git-whatchanged File 3.67 MB 0755
git-worktree File 3.67 MB 0755
git-write-tree File 3.67 MB 0755
scalar File 2.18 MB 0755