|
1 | 1 | # Introduction to Git and Version Control
|
2 | 2 |
|
3 |
| -This tutorial is targeted towards the students of [Founders & Coders](http://foundersandcoders.org/) 8 week coding Academy. Feedback or Suggestions in the format of an issue or contributions as a pull request are appreciated. |
| 3 | +This tutorial is targeted towards the students of courses at [Founders & Coders](http://foundersandcoders.org/). Feedback or Suggestions in the format of an issue or contributions as a pull request are appreciated. |
4 | 4 |
|
5 | 5 | As a student, if you get stuck at any point, please open an issue and I will try to get back to you as soon as possible. If you would prefer, feel free to contact me on Gitter. When the issue is solved, do think about making a pull request to the project.
|
6 | 6 |
|
7 |
| -The introduction to Git is aimed at the first week of the course. The hope is that this introduction will cover all you need to know to start collaborating on code with your fellow teammates. |
| 7 | +The introduction to Git is aimed at the first week of the full time Founders & Coders course, or to those just starting out with git. The hope is that this introduction will cover all you need to know to start collaborating on code with your fellow teammates. |
8 | 8 |
|
9 |
| -Git for Collaboration is aimed at the second week students of the course. Even though most of the advice in this tutorial will take a while to digest - and practise is essential. A good goal is to understand all these concepts, and implement at least most of these tips in your collaborative projects before finishing your time as a student at Founders & Coders. |
| 9 | +Git for Collaboration is aimed at the second week students of the course, or those that have mastered the first section. Even though most of the advice in this tutorial will take a while to digest - and practise is essential. A good goal is to understand all these concepts, and implement at least most of these tips in your collaborative projects before finishing your time as a student at Founders & Coders. |
10 | 10 |
|
11 | 11 |
|
12 | 12 | # Contents
|
@@ -36,7 +36,7 @@ Git for Collaboration is aimed at the second week students of the course. Even t
|
36 | 36 | <a id="introduction" name="introduction"></a>
|
37 | 37 | # Introduction
|
38 | 38 |
|
39 |
| -This introduction to Git is aimed at first week students of [Founders & Coders](http://foundersandcoders.org/) 8 week coding academy. The hope is that this introduction will cover all you need to know to start collaborating on code with your fellow teammates. |
| 39 | +The introduction to Git is aimed at the first week of the full time Founders & Coders course, or to those just starting out with git. The hope is that this introduction will cover all you need to know to start collaborating on code with your fellow teammates. |
40 | 40 |
|
41 | 41 |
|
42 | 42 | <a id="terminology" name="terminology"></a>
|
@@ -134,7 +134,7 @@ When there are other branches in your repo the green branch is the current one y
|
134 | 134 | The next step is to create your own branch to work on. try this:
|
135 | 135 |
|
136 | 136 | ```
|
137 |
| -git branch new-branch |
| 137 | +git branch my-new-branch |
138 | 138 | ```
|
139 | 139 |
|
140 | 140 | It is best to try to name your branches as specific as possible, so not to confuse them with any others. There are many naming conventions out there for branches, but for this week simply try to name them off of a feature. For example (`navbar-collapse` or `sass-file-structure`). To see all your branches:
|
@@ -287,7 +287,7 @@ http://scottchacon.com/2011/08/31/github-flow.html
|
287 | 287 | <a name="git-collaboration" id="git-collaboration"></a>
|
288 | 288 | # Git for Collaboration
|
289 | 289 |
|
290 |
| -Git for Collaboration is aimed at the second week students of the course. Even though most of the advice in this tutorial will take a while to digest - and practise is essential. A good goal is to understand all these concepts, and implement at least most of these tips in your collaborative projects before finishing your time as a student at Founders & Coders. |
| 290 | +Git for Collaboration is aimed at the second week students of the course, or those that have mastered the first section. Even though most of the advice in this tutorial will take a while to digest - and practise is essential. A good goal is to understand all these concepts, and implement at least most of these tips in your collaborative projects before finishing your time as a student at Founders & Coders. |
291 | 291 |
|
292 | 292 |
|
293 | 293 | <a name="further-terminology" id="further-terminology"></a>
|
|
0 commit comments