зеркало из https://github.com/github/msysgit.git
/src: commit with -n in release.sh scripts
Makes it possible to commit inside of /src/<package>/release.sh when core.whitespace is set and an auto-enabled pre-commit hook (i.e. init.templatedir is set) is used that checks for whitespace problems. Signed-off-by: Stefan Naewe <stefan.naewe@gmail.com>
This commit is contained in:
Родитель
6396cb1268
Коммит
da6c969acb
|
@ -4,4 +4,4 @@ cd "$(dirname "$0")" &&
|
|||
exe=/mingw/bin/connect.exe
|
||||
gcc -O2 -o $exe connect.c -lws2_32 &&
|
||||
git add $exe &&
|
||||
git commit -s -m "Commit connect, a SOCKS proxy" $exe
|
||||
git commit -n -s -m "Commit connect, a SOCKS proxy" $exe
|
||||
|
|
|
@ -33,7 +33,7 @@ test -d $DIR || {
|
|||
git init &&
|
||||
git config core.autocrlf false &&
|
||||
git add . &&
|
||||
git commit -m "Import of $FILE"
|
||||
git commit -n -m "Import of $FILE"
|
||||
)
|
||||
} || die "Could not check out cURL"
|
||||
|
||||
|
|
|
@ -22,7 +22,7 @@ fi &&
|
|||
(cd $DIR &&
|
||||
git init &&
|
||||
git add . &&
|
||||
git commit -m initial &&
|
||||
git commit -n -m initial &&
|
||||
git am ../patches/* &&
|
||||
CFLAGS="-I/git/compat/regex -DGAWK -DNO_MBSUPPORT" \
|
||||
./configure --prefix=/mingw &&
|
||||
|
|
|
@ -4,4 +4,4 @@ DEST=/mingw/bin/getcp.exe
|
|||
make &&
|
||||
install -m 775 getcp.exe $DEST &&
|
||||
git add $DEST &&
|
||||
git commit -s -m "getcp: locale independent utility to read the current code page" $DEST
|
||||
git commit -n -s -m "getcp: locale independent utility to read the current code page" $DEST
|
||||
|
|
|
@ -21,7 +21,7 @@ test -d $DIR || {
|
|||
cd $DIR &&
|
||||
git init &&
|
||||
git add . &&
|
||||
git commit -m "Import of $FILE"
|
||||
git commit -n -m "Import of $FILE"
|
||||
)
|
||||
} || die "Could not check out $FILE"
|
||||
|
||||
|
|
|
@ -17,7 +17,7 @@ test -d $d || {
|
|||
git init &&
|
||||
git config core.autocrlf false &&
|
||||
git add . &&
|
||||
git commit -m "Import of $tar"
|
||||
git commit -n -m "Import of $tar"
|
||||
)
|
||||
} || die "Could not check out gnupg source"
|
||||
|
||||
|
|
|
@ -21,7 +21,7 @@ test -d $DIR || {
|
|||
cd $DIR &&
|
||||
git init &&
|
||||
git add . &&
|
||||
git commit -m "Import of $FILE"
|
||||
git commit -n -m "Import of $FILE"
|
||||
)
|
||||
} || die "Could not check out $FILE"
|
||||
|
||||
|
|
|
@ -17,7 +17,7 @@ fi &&
|
|||
(cd $DIR &&
|
||||
git init &&
|
||||
git add . &&
|
||||
git commit -m initial &&
|
||||
git commit -n -m initial &&
|
||||
git am ../patches/* &&
|
||||
./configure --prefix=/mingw &&
|
||||
make &&
|
||||
|
|
|
@ -21,7 +21,7 @@ test -d $DIR || {
|
|||
cd $DIR &&
|
||||
git init &&
|
||||
git add . &&
|
||||
git commit -m "Import of $FILE"
|
||||
git commit -n -m "Import of $FILE"
|
||||
)
|
||||
} || die "Could not check out $DIR"
|
||||
|
||||
|
|
|
@ -21,7 +21,7 @@ test -d $DIR || {
|
|||
cd $DIR &&
|
||||
git init &&
|
||||
git add . &&
|
||||
git commit -m "Import of $FILE"
|
||||
git commit -n -m "Import of $FILE"
|
||||
)
|
||||
} || die "Could not check out $FILE"
|
||||
|
||||
|
|
|
@ -21,7 +21,7 @@ test -d $DIR || {
|
|||
cd $DIR &&
|
||||
git init &&
|
||||
git add . &&
|
||||
git commit -m "Import of $FILE"
|
||||
git commit -n -m "Import of $FILE"
|
||||
)
|
||||
} || die "Could not check out $FILE"
|
||||
|
||||
|
|
|
@ -21,7 +21,7 @@ test -d $DIR || {
|
|||
cd $DIR &&
|
||||
git init &&
|
||||
git add . &&
|
||||
git commit -m "Import of $FILE" &&
|
||||
git commit -n -m "Import of $FILE" &&
|
||||
git am ../patches/*
|
||||
)
|
||||
} || die "Could not check out $FILE"
|
||||
|
|
|
@ -21,7 +21,7 @@ test -d $DIR || {
|
|||
cd $DIR &&
|
||||
git init &&
|
||||
git add . &&
|
||||
git commit -m "Import of $FILE"
|
||||
git commit -n -m "Import of $FILE"
|
||||
)
|
||||
} || die "Could not check out $FILE"
|
||||
|
||||
|
|
|
@ -87,19 +87,19 @@ test -f $DIR/openssl.dll || (
|
|||
cp $list /mingw/bin && (
|
||||
cd /mingw/bin &&
|
||||
git add $list &&
|
||||
git commit -s -m "Install OpenSSL $VERSION"
|
||||
git commit -n -s -m "Install OpenSSL $VERSION"
|
||||
) &&
|
||||
list=$(echo *.dll.a) &&
|
||||
cp $list /mingw/lib && (
|
||||
cd /mingw/lib &&
|
||||
git add $list &&
|
||||
git commit -s -m "Install OpenSSL $VERSION import libs"
|
||||
git commit -n -s -m "Install OpenSSL $VERSION import libs"
|
||||
) &&
|
||||
cd ../outinc &&
|
||||
cp -r openssl /mingw/include &&
|
||||
(
|
||||
cd /mingw/include &&
|
||||
git add openssl &&
|
||||
git commit -s -m "Install OpenSSL $VERSION header files"
|
||||
git commit -n -s -m "Install OpenSSL $VERSION header files"
|
||||
)
|
||||
) || die "Could not install $FILE"
|
||||
|
|
|
@ -23,7 +23,7 @@ test -d $DIR || {
|
|||
git init &&
|
||||
git config core.autocrlf false &&
|
||||
git add . &&
|
||||
git commit -m "Import of $FILE"
|
||||
git commit -n -m "Import of $FILE"
|
||||
)
|
||||
} || die "Could not check out Poppler"
|
||||
|
||||
|
|
|
@ -16,7 +16,7 @@ test $d/.git || {
|
|||
git init &&
|
||||
rm -rf .git/hooks &&
|
||||
git add . &&
|
||||
git commit -m initial &&
|
||||
git commit -n -m initial &&
|
||||
git am ../patches/*
|
||||
} &&
|
||||
compile &&
|
||||
|
|
|
@ -24,7 +24,7 @@ cd $release &&
|
|||
git init &&
|
||||
git config core.autocrlf false &&
|
||||
git add . &&
|
||||
git commit -m "Import of $release"
|
||||
git commit -n -m "Import of $release"
|
||||
) ||
|
||||
{ echo "Error: Initializing git repository from MSYS source fails." ; exit 1 ; }
|
||||
|
||||
|
|
|
@ -58,7 +58,7 @@ do
|
|||
|
||||
git diff --diff-filter=AM --name-only HEAD^! |
|
||||
sed -e "s/^/\//" > "$list" &&
|
||||
(cd / && git commit -C HEAD --amend -- "$list") ||
|
||||
(cd / && git commit -n -C HEAD --amend -- "$list") ||
|
||||
|
||||
exit
|
||||
)
|
||||
|
|
|
@ -17,7 +17,7 @@ fi &&
|
|||
(cd $DIR && make -f win32/Makefile.gcc) &&
|
||||
FILES="funzip.exe unzip.exe unzipsfx.exe" &&
|
||||
(cd $DIR && cp $FILES /bin/) &&
|
||||
(cd /bin && git add $FILES && git commit -s -m "Install $DIR" $FILES) || {
|
||||
(cd /bin && git add $FILES && git commit -n -s -m "Install $DIR" $FILES) || {
|
||||
echo "Failed to install unzip"
|
||||
exit 1
|
||||
}
|
||||
|
|
|
@ -26,7 +26,7 @@ test -d $DIR || {
|
|||
git init &&
|
||||
git config core.autocrlf false &&
|
||||
git add . &&
|
||||
git commit -m "Import of $FILE"
|
||||
git commit -n -m "Import of $FILE"
|
||||
)
|
||||
} || die "Could not check out vim"
|
||||
|
||||
|
|
|
@ -21,7 +21,7 @@ test -d $DIR || {
|
|||
cd $DIR &&
|
||||
git init &&
|
||||
git add . &&
|
||||
git commit -m "Import of $FILE"
|
||||
git commit -n -m "Import of $FILE"
|
||||
)
|
||||
} || die "Could not check out $FILE"
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче