Some of this is pulled directly from the git-svn man page.
git svn branch new-svn-branch
now there is a new remote tracking branch, confirm with
git branch -r
| THIS GIST SHOULD BE FILLED WITH BEES. | |
| __ __ __ __ __ | |
| / \ / \ / \ / \ / \ | |
| / B \__/ \__/ \__/ B \__/ \ | |
| \ / \ B / \ B / \ B / \ / | |
| \__/ \__/ \__/ \__/ \B_/ | |
| / \ / \ / \ B / \ B / \ | |
| / \__/ \__/ B \__/ \__/ B \ | |
| \ / \ B / \ / \ / \ / |
Example reference-style link.
| var yourName = ""; | |
| var gender = "MALE"; | |
| var result; | |
| //Line 10 starts an if statement | |
| //Nested in this if statement is an if else statement on lines 11 - 15 | |
| //This nested if else statement allows us to check another condition | |
| //We close the first if statement at the start of line 16 | |
| if (yourName.length > 0) { |
| var legalDrivingAge = 18; | |
| var canIDrive = function (myAge) { | |
| if (myAge >= legalDrivingAge) | |
| return true;} | |
| else{return false;} | |
| canIDrive (18) |