/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:
Stefan Naewe 2014-02-21 20:47:06 +01:00
Родитель 6396cb1268
Коммит da6c969acb
21 изменённых файлов: 23 добавлений и 23 удалений

Просмотреть файл

@ -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"