From 318a84bd7faed83f91970ecec75326a338bd521d Mon Sep 17 00:00:00 2001 From: Marianne Corvellec Date: Wed, 18 Apr 2018 12:28:54 -0400 Subject: [PATCH] fix: commit command should not use -a option --- travis-deploy-to-gh-pages/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/travis-deploy-to-gh-pages/README.md b/travis-deploy-to-gh-pages/README.md index d4c16dd..79fdefe 100644 --- a/travis-deploy-to-gh-pages/README.md +++ b/travis-deploy-to-gh-pages/README.md @@ -32,7 +32,7 @@ git rm -rf . ```bash echo "Placeholder page" > index.html git add index.html -git commit -a -m "Placeholder page" +git commit -m "Placeholder page" git push origin gh-pages ```