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
MESSAGE=" | |
<table><thead><tr><td colspan=\"2\"><b>Build starting</b></td></tr></thead> | |
<tbody> | |
<tr><td><b>Tag</b></td><td>${build_tag}</td></tr> | |
<tr><td><b>Built for</b></td><td>${built_for}</td></tr> | |
<tr><td><b>Built by</b></td><td>${built_by}</td></tr> | |
</tbody> | |
</table> | |
" | |
curl -s -X POST \ |
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
/* | |
* DOMParser HTML extension | |
* 2012-09-04 | |
* | |
* By Eli Grey, http://eligrey.com | |
* Public domain. | |
* NO WARRANTY EXPRESSED OR IMPLIED. USE AT YOUR OWN RISK. | |
*/ | |
/*! @source https://gist.github.com/1129031 */ |
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
git branch -m old_branch new_branch # Rename branch locally | |
# OR | |
git branch -m new_branch # Rename current branch | |
# THEN | |
git push origin :old_branch # Delete the old branch | |
git push --set-upstream origin new_branch # Push the new branch, set local branch to track the new remote |