| Server IP : 121.121.20.254 / Your IP : 216.73.217.141 Web Server : Microsoft-IIS/10.0 System : Windows NT WEB-SERVER 10.0 build 20348 (Windows Server 2022) AMD64 User : IUSR ( 0) PHP Version : 8.3.28 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/Program Files/Git/usr/bin/ |
Upload File : |
#!/bin/sh
die () {
echo "$*" >&2
exit 1
}
case "$1" in
*/.git/*) ;; # needs LF line endings
*) exec notepad.exe "$1" || die "Could not launch notepad.exe";;
esac
test $# = 1 ||
die "Usage: $0 <file>"
if test -f "$1"
then
case "$(git config i18n.commitencoding 2>/dev/null)" in
''|utf-8|utf8) unix2dos.exe -m "$1";;
*) unix2dos.exe "$1";;
esac
fi &&
notepad.exe "$1" &&
dos2unix.exe "$1" &&
case "$1" in
*/COMMIT_EDITMSG|*\\COMMIT_EDITMSG)
! columns="$(git config format.commitmessagecolumns)" || {
msg="$(fmt.exe -s -w "$columns" "$1" -p '#' | \
fmt.exe -s -w "$columns" -)" &&
printf "%s" "$msg" >"$1"
}
;;
esac