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
| // Reference: http://www.blackdogfoundry.com/blog/moving-repository-from-bitbucket-to-github/ | |
| // See also: http://www.paulund.co.uk/change-url-of-git-repository | |
| $ cd $HOME/Code/repo-directory | |
| $ git remote rename origin bitbucket | |
| $ git remote add origin https://github.com/mandiwise/awesome-new-repo.git | |
| $ git push origin master | |
| $ git remote rm bitbucket |
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
| applyStyle = item => { | |
| const attrValue = item.attributes['data-automation'].value; | |
| const tagName = item.tagName; | |
| item.append(tagName + ': ' + attrValue); | |
| item.style = "border: 1.5px solid red"; | |
| }; | |
| $$("[data-automation]").map(item => applyStyle(item)) |
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
| BPurple=\033[1;35m # Purple | |
| NC=\033[0m # No Color | |
| release_ios: _clear_terminal _clean_ios _add_ios _build_ios | |
| release_android: _clear_terminal _clean_android _add_android _build_android | |
| _update_version: | |
| @echo "\t${BPurple}-> version updated${NC}" | |
| @vi config.xml |