Site: bluecrossmn.com/centers
Objective: Duplicate the font-end code of the retail site using Bootstrap v4.0.0-beta.3
- Using Terminal (Command Line)
git checkout –b [my-feature] master
- create new branch based on your up-to-date local master branch- make edits and save the file(s) with your text editor
git add [file.ext]
- stage changes made to each filegit commit –m "Message with specifics"
- commit changes to [my-feature] branchgit checkout master
- switch to local master branchgit pull origin master
- pull changes from remote repogit checkout [my-feature]
- switch back to local [my-feature] branchgit rebase master
- update local [my-feature] branch with new changes pulled from remote repogit checkout master
- switch back to local master branchgit merge [my-feature]
- merge commits from local [my-feature] branch into local master branchgit branch –d [my-feature]
- delete local [my-feature] branch since commits now exist on mastergit push origin master
- push changes to remote repository