Fix git commit bug - use 'commit' instead of 'ci' alais.

This commit is contained in:
Jonathan Petto 2019-04-26 13:47:04 -05:00
Родитель 62d866df10
Коммит b483a69522
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -8,7 +8,7 @@ git checkout ${GIT_COMMIT:=$(git rev-parse --short HEAD)} #detached head
# add files from the newly created /release folder
git add release
# check in the changes
git ci -m "Generated from $GIT_COMMIT"
git commit -m "Generated from $GIT_COMMIT"
# create a new branch named 'gh-pages-$GIT_COMMIT' with only the code from the /release folder
git subtree split --prefix release -b gh-pages-$GIT_COMMIT
# push our bespoke branch to the gh-pages branch