ruby - Rake task which commit and push to repository -
Is there a way to create rack work that can make changes and push them into remote repositories?
You can always do such a task yourself:
tasks " Commit_and_push "= & gt; : The 'git commit -a -m' message of the environment '; Git push' end
But the rake is really slow, the fastest way to create a shell script like this is: / P>
#! / Bin / shGit commit -a -m "$ 1" git push
Comments
Post a Comment