Last active
November 5, 2016 22:43
-
-
Save tatianaevers/64ea13b3f75c54bef857bd1078677e1b to your computer and use it in GitHub Desktop.
Revisions
-
tatianaevers revised this gist
Nov 5, 2016 . 1 changed file with 1 addition and 0 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -7,6 +7,7 @@ Here are the basic steps to start using feature branches in your project. ``` # switch to the master branch git checkout master # fetch the latest changes from the remote git repository git pull origin master ``` -
tatianaevers revised this gist
Nov 5, 2016 . 1 changed file with 12 additions and 8 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -4,22 +4,26 @@ Here are the basic steps to start using feature branches in your project. ###Start on master ``` # switch to the master branch git checkout master # fetch the latest changes from the remote git repository git pull origin master ``` ###Create a new feature branch ``` #will show we are on the new branch and ready to work. git checkout -b <YOUR_BRANCH> ``` ###Implement your changes on that branch ``` git status ``` ###Push the feature branch to your remote repo ``` git push origin <YOUR_BRANCH> ``` ###Create a pull request for your new changes -
tatianaevers revised this gist
Nov 5, 2016 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -11,7 +11,7 @@ Here are the basic steps to start using feature branches in your project. ###Create a new feature branch --will show we are on the new branch and ready to work. git checkout -b <YOUR_BRANCH> ###Implement your changes on that branch -
tatianaevers created this gist
Nov 5, 2016 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,25 @@ ## Quick Overview Here are the basic steps to start using feature branches in your project. ###Start on master // switch to the master branch git checkout master // fetch the latest changes from the remote git repository git pull origin master ###Create a new feature branch //will show we are on the new branch and ready to work. git checkout -b <YOUR_BRANCH> ###Implement your changes on that branch git status ###Push the feature branch to your remote repo git push origin <YOUR_BRANCH> ###Create a pull request for your new changes