Skip to content

Commit d5af19c

Browse files
authored
Merge pull request #50 from githubtraining/new-graphics
[WIP] Add New Graphics
2 parents 0cc126f + 97f1289 commit d5af19c

15 files changed

+47
-3
lines changed

book/09_merging_pull_requests.md

+2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ Now that you have made the requested changes, your pull request should be ready
66

77
When you merge your branch, you are taking the content and history from your feature branch and adding it to the content and history of the `gh-pages` branch.
88

9+
![Merging Pull Requests](img/merging-prs.png)
10+
911
Many project teams have established rules about who should merge a pull request.
1012

1113
- Some say it should be the person who created the pull request since they will be the ones to deal with any issues resulting from the merge.

book/13_workflow_review_project_github_games.md

+2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ In this section, we will work on a project repository called `github-games`.
44

55
A `github-games` repository has been created for you in the githubschool organization. You can access the repository at `https://github.com/githubschool/github-games-username`.
66

7+
If you're using the Fork and Pull Workflow, [don't forget to look in the appendix for a more thorough explanation](app_fork_workflow.md).
8+
79
### Workflow Review: Updating the README.md
810

911
Now you will practice the GitHub Flow from beginning to end by updating the link in the README to point to your fork of the repository.

book/14_git_bisect.md

+2
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ Using a binary search, `git bisect` can help us detect specific events in our co
1414

1515
`git bisect` works by cutting the history between two points in half and then checking you out to that commit. You then check whether the bug/feature exists at that point and tell Git the result. From there, Git will do another division, etc until you have located the desired commit.
1616

17+
![Git Bisect](img/git-bisect.png)
18+
1719
> When you are doing a bisect, you are essentially in a detached head state. It is important to remember to end the bisect with `git bisect reset` before attempting to perform other operations with Git.
1820
{: .warning}
1921

book/SUMMARY_CICDONLY_CIRCLE.md

+4
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,8 @@
3939

4040
## Appendix
4141
* [Day 1 Activity Instructions](app_Day_1_activities.md)
42+
* [Day 2 Activity Instructions](app_day2_mergeconflict.md)
4243
* [Workflow Guide](App_a_workflow_guide.md)
44+
* [How to Generate Jekyll Sites Locally](app_how_to_generate_locally.md)
45+
* [Fork and Pull Workflow and Multiple Remotes](app_fork_workflow.md)
46+
* [End of Training: Cleaning Loaner PCs](App_clean_loaner_pc.md)

book/SUMMARY_CICDONLY_TRAVIS.md

+7-3
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,10 @@
3737
* [Travis CI](35_travisCI.md)
3838
* [Partner Activity](37_partner_activity.md)
3939

40-
## Appendix
41-
* [Day 1 Activity Instructions](app_Day_1_activities.md)
42-
* [Workflow Guide](App_a_workflow_guide.md)
40+
## Appendix
41+
* [Day 1 Activity Instructions](app_Day_1_activities.md)
42+
* [Day 2 Activity Instructions](app_day2_mergeconflict.md)
43+
* [Workflow Guide](App_a_workflow_guide.md)
44+
* [How to Generate Jekyll Sites Locally](app_how_to_generate_locally.md)
45+
* [Fork and Pull Workflow and Multiple Remotes](app_fork_workflow.md)
46+
* [End of Training: Cleaning Loaner PCs](App_clean_loaner_pc.md)

book/SUMMARY_CICD_FULLGH4D_CIRCLE.md

+3
Original file line numberDiff line numberDiff line change
@@ -46,5 +46,8 @@
4646

4747
## Appendix
4848
* [Day 1 Activity Instructions](app_Day_1_activities.md)
49+
* [Day 2 Activity Instructions](app_day2_mergeconflict.md)
4950
* [Workflow Guide](App_a_workflow_guide.md)
51+
* [How to Generate Jekyll Sites Locally](app_how_to_generate_locally.md)
52+
* [Fork and Pull Workflow and Multiple Remotes](app_fork_workflow.md)
5053
* [End of Training: Cleaning Loaner PCs](App_clean_loaner_pc.md)

book/SUMMARY_CICD_FULLGH4D_TRAVIS.md

+3
Original file line numberDiff line numberDiff line change
@@ -46,5 +46,8 @@
4646

4747
## Appendix
4848
* [Day 1 Activity Instructions](app_Day_1_activities.md)
49+
* [Day 2 Activity Instructions](app_day2_mergeconflict.md)
4950
* [Workflow Guide](App_a_workflow_guide.md)
51+
* [How to Generate Jekyll Sites Locally](app_how_to_generate_locally.md)
52+
* [Fork and Pull Workflow and Multiple Remotes](app_fork_workflow.md)
5053
* [End of Training: Cleaning Loaner PCs](App_clean_loaner_pc.md)

book/SUMMARY_GH4D.md

+1
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,5 @@
3939
* [Day 2 Activity Instructions](app_day2_mergeconflict.md)
4040
* [Workflow Guide](App_a_workflow_guide.md)
4141
* [How to Generate Jekyll Sites Locally](app_how_to_generate_locally.md)
42+
* [Fork and Pull Workflow and Multiple Remotes](app_fork_workflow.md)
4243
* [End of Training: Cleaning Loaner PCs](App_clean_loaner_pc.md)

book/app_fork_workflow.md

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
## Fork and Pull Workflow
2+
3+
Let's distinguish between a few vocabulary words in Git and discuss a common workflow that involves forking.
4+
5+
As in the picture below, all of our work generally starts from one parent repository. We call this the **parent** repository, but we can sometimes call it different things depending on _how_ we work with it.
6+
7+
For example, when we **clone** a repository by creating a local copy on our machine, we refer to that original remote repository as **origin**.
8+
9+
When we create branches, we can create them on our local **clone** _and_ on the remote **origin**.
10+
11+
![Clone vs Branch vs Fork](img/clone-branch-fork.png)
12+
13+
Things start to get tricky when we start talking about forking. A **fork** is a remote copy of a repository with a different owner. When you have a new remote **fork**, you would refer to the parent remote as **upstream**.
14+
15+
![Fork Workflow](img/origin-upstream.png)
16+
17+
If you cloned the fork, you would refer to your own fork as **origin**, and the parent as **upstream**.
18+
19+
![Fork Workflow](img/fork-from.png)
20+
21+
When you want to return work back to the **origin** or **upstream** repositories, you would push back to **origin**, then open a pull request between the remote forks.
22+
23+
![Fork Workflow](img/fork-to.png)

book/img/clone-branch-fork.png

79 KB
Loading

book/img/fork-from.png

72.4 KB
Loading

book/img/fork-to.png

71.7 KB
Loading

book/img/git-bisect.png

101 KB
Loading

book/img/merging-prs.png

50 KB
Loading

book/img/origin-upstream.png

70.3 KB
Loading

0 commit comments

Comments
 (0)