1
Fork 0

move git config set to config

This commit is contained in:
Jake Howard 2016-08-24 10:32:42 +01:00
parent b21153c384
commit 62a2a2d8bd
Signed by: jake
GPG key ID: 57AFB45680EDD477
2 changed files with 2 additions and 2 deletions

View file

@ -62,8 +62,6 @@ spellcheck:
upload: build upload: build
git clone https://github.com/RealOrangeOne/host-container.git $(DEPLOY_DIR) git clone https://github.com/RealOrangeOne/host-container.git $(DEPLOY_DIR)
git config --global user.email "git@theorangeone.net"
git config --global user.name "TheOrangeOne"
cp -rf $(OUTPUTDIR)/. $(DEPLOY_DIR)/site/ cp -rf $(OUTPUTDIR)/. $(DEPLOY_DIR)/site/
@cd $(DEPLOY_DIR) && git remote add dokku $(DEPLOY_URL) && git add . && git commit -m "add files" && git push -f dokku master --quiet @cd $(DEPLOY_DIR) && git remote add dokku $(DEPLOY_URL) && git add . && git commit -m "add files" && git push -f dokku master --quiet
rm -rf $(DEPLOY_DIR) rm -rf $(DEPLOY_DIR)

View file

@ -20,4 +20,6 @@ deployment:
production: production:
branch: master branch: master
commands: commands:
- git config --global user.email "git@theorangeone.net"
- git config --global user.name "TheOrangeOne"
- make upload - make upload