fix the gitignore mess: git refuses to ignore already tracked files

This commit is contained in:
Attila Lendvai 2020-11-28 22:13:05 +01:00
parent 85e367523a
commit 75b8e35aa7
5 changed files with 5 additions and 20 deletions

2
.gitignore vendored
View File

@ -1,2 +1,2 @@
notes.txt
authorized_keys
build/

View File

@ -2,25 +2,12 @@
set -e
absolutize ()
{
if [ ! -d "$1" ]; then
echo
echo "ERROR: '$1' doesn't exist or not a directory!"
kill -INT $$
fi
pushd "$1" >/dev/null
echo `pwd`
popd >/dev/null
}
TARGET_ARCHITECTURE=$1
TARGET_VARIANT=$2
TARGET_DEVICE=$3
BUILD=`dirname "$0"`"/build/"
BUILD=`absolutize $BUILD`
BUILD=`readlink -f $BUILD`
###
### chose a release

4
build/.gitignore vendored
View File

@ -1,4 +0,0 @@
# Ignore everything in this directory
*
# Except this file
!.gitignore

View File

@ -0,0 +1,3 @@
# you can put your ssh public key into authorized_keys,
# but we don't ever want it to be committed to the repo
authorized_keys

View File

@ -1 +0,0 @@
# this file may contain ssh public keys for passwordless ssh root login