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
parent dd43bf6011
commit 9b521b9d7d
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 echo -n $VERSION > $RT_DEST_DIR/$RELEASE/VERSION
cd $RT_DEST_DIR cd $RT_DEST_DIR
echo " - Reinitializing git state" echo " - Reinitializing git state"
git add . git add --all --force .
git commit -a -m "riak_test init" --amend > /dev/null git commit -a -m "riak_test init" --amend > /dev/null

View File

@ -42,6 +42,6 @@ git init
git config user.name "Riak Test" git config user.name "Riak Test"
git config user.email "dev@basho.com" git config user.email "dev@basho.com"
git add . git add --all --force .
git commit -a -m "riak_test init" > /dev/null git commit -a -m "riak_test init" > /dev/null
echo " - Successfully completed initial git commit of $RT_DEST_DIR" echo " - Successfully completed initial git commit of $RT_DEST_DIR"