Summary text.
Hello World, how is it going?
Hello World, how is it going?
| askAboutGitBranches() { | |
| echo "Is the branch you want to rebase already pushed to GitHub? (y/n) " | |
| read RESPONSE | |
| if [ "$RESPONSE" = "n" ]; then | |
| rebaseAway | |
| elif [ "$RESPONSE" = "y" ]; then | |
| echo "Are you the only one committing on this branch? (y/n)" | |
| read RESPONSE_2 | |
| if [ "$RESPONSE_2" = "y" ]; then | |
| rebaseAway |
| Apache License | |
| Version 2.0, January 2004 | |
| http://www.apache.org/licenses/ | |
| TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION | |
| 1. Definitions. | |
| "License" shall mean the terms and conditions for use, reproduction, |