Ensure git adds everything and ignores any global ignore settings

This commit is contained in:
Luke Bakken 2016-01-26 04:59:05 -08:00 committed by Brett Hazen
parent 2c8d615489
commit 5a434ef15a
2 changed files with 2 additions and 2 deletions

View File

@ -37,5 +37,5 @@ echo " - Writing $RT_DEST_DIR/$RELEASE/VERSION"
echo -n $VERSION > $RT_DEST_DIR/$RELEASE/VERSION
cd $RT_DEST_DIR
echo " - Reinitializing git state"
git add .
git add --all --force .
git commit -a -m "riak_test init" --amend > /dev/null

View File

@ -46,6 +46,6 @@ git config user.email "dev@basho.com"
## (the latter is executed in rtdev-current.sh):
echo "priv/" >.gitignore
git add .
git add --all --force .
git commit -a -m "riak_test init" > /dev/null
echo " - Successfully completed initial git commit of $RT_DEST_DIR"