Last active
August 29, 2015 14:07
-
-
Save razbakov/dcac803c228eeb814e35 to your computer and use it in GitHub Desktop.
Commit submodule and build project
This file contains hidden or 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
cd /projects | |
cd mymodule | |
git commit -am "JIRA-1 My changes" | |
git push | |
cd ../targetproject | |
git checkout master-branch | |
rm -rf vendor/kirchbergerknorr/yourmodule/ | |
composer update | |
git commit -am "JIRA-1 Updated mymodule" | |
git push | |
java -jar ~/Downloads/jenkins-cli.jar -s http://192.168.178.10:8080/ build projectname.test -s -v --username your-jenkins-username --password your-jenkins-password |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment