We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents af017f9 + c4ee58c commit 2a96a86Copy full SHA for 2a96a86
bin/commit_and_push.sh
@@ -15,11 +15,8 @@ pushd "$NEW_WIKI_CHECKOUT_PATH"
15
git config advice.skippedCherryPicks false
16
git config advice.setUpstreamFailure false
17
18
- # idea from https://stackoverflow.com/a/10135446/1762839
19
echo "Adding changes to GIT..."
20
- git ls-files --modified | grep '\.md$' | xargs git add
21
- git ls-files . --exclude-standard --others | grep '\.md$' | xargs git add
22
- git ls-files --deleted | grep '\.md$' | xargs git add
+ git add -A --verbose
23
24
echo "Commiting..."
25
git commit -m "$COMMIT_MESSAGE"
0 commit comments