You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
371 B
Bash
14 lines
371 B
Bash
#!/bin/bash
|
|
#
|
|
# This script assumes a linux environment
|
|
|
|
echo "*** µMatrix: git adding changed assets..."
|
|
git add --update --ignore-removal --ignore-errors assets
|
|
echo "*** µMatrix: git committing assets..."
|
|
git commit -m 'update of third-party assets'
|
|
echo "*** µMatrix: git pushing assets to remote master..."
|
|
git push origin master
|
|
|
|
echo "*** µMatrix: git done."
|
|
|