Last active
October 5, 2018 16:52
-
-
Save piferdg/74331a8df9f00ff6a324cc74e5afb396 to your computer and use it in GitHub Desktop.
Revisions
-
piferdg renamed this gist
Oct 5, 2018 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
piferdg created this gist
Oct 5, 2018 .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,22 @@ # Advanced Git The goal of this drill is to create a poem using a more advanced git workflow. - In your group, one person should create a git repository. - The rest of the members of your group should clone it onto their machine. - One person will create an index.html document with the basic parts of an html document in it. - Push that document up to the repo. Don't forget about remotes. - Everyone will pull that change down to their local repo. - Next person will create a feature branch ` git checkout -b branchname ` - In that branch they will write the first line of the poem. - Add, commit and push to your branch, remember: git push remote branch - Submit a pull request from your branch to master branch - Merge that branch in - Repeat. - You can also add a styles.css document to style the text that you can all work on concurrently. ## Resuources - [Understanding GitHub Workflow](https://guides.github.com/introduction/flow/) - [Feature Branching Your Way to Greatness](https://www.atlassian.com/agile/software-development/branching)