Last active
January 2, 2017 16:40
-
-
Save christophengelmayer/cfaaf4ad8b213312ebb62f31d7c3bdce to your computer and use it in GitHub Desktop.
Makefile Rsync ProcessWire
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
rsync: | |
rsync -avzuhO --delete \ | |
--exclude '.git*' \ | |
--exclude '.DS_Store' \ | |
--exclude 'Makefile' \ | |
--exclude '/src' \ | |
--exclude '/node_modules' \ | |
--exclude '/site/config.php' \ | |
--exclude '/site/assets/sessions' \ | |
--exclude '/site/assets/files' \ | |
--exclude '/site/assets/logs' \ | |
--exclude '/site/assets/cache' \ | |
. {{SERVER}}:{{PATH_TO_FOLDER}}/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment