You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
371 B

  1. #!/bin/bash
  2. #
  3. # This script assumes a linux environment
  4. echo "*** µMatrix: git adding changed assets..."
  5. git add --update --ignore-removal --ignore-errors assets
  6. echo "*** µMatrix: git committing assets..."
  7. git commit -m 'update of third-party assets'
  8. echo "*** µMatrix: git pushing assets to remote master..."
  9. git push origin master
  10. echo "*** µMatrix: git done."