Skip to content

Commit 9b521b9

Browse files
author
Luke Bakken
committed
Ensure git adds everything and ignores any global ignore settings
1 parent dd43bf6 commit 9b521b9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

bin/rtdev-install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,5 +37,5 @@ echo " - Writing $RT_DEST_DIR/$RELEASE/VERSION"
3737
echo -n $VERSION > $RT_DEST_DIR/$RELEASE/VERSION
3838
cd $RT_DEST_DIR
3939
echo " - Reinitializing git state"
40-
git add .
40+
git add --all --force .
4141
git commit -a -m "riak_test init" --amend > /dev/null

bin/rtdev-setup-releases.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,6 @@ git init
4242
git config user.name "Riak Test"
4343
git config user.email "[email protected]"
4444

45-
git add .
45+
git add --all --force .
4646
git commit -a -m "riak_test init" > /dev/null
4747
echo " - Successfully completed initial git commit of $RT_DEST_DIR"

0 commit comments

Comments
 (0)