Skip to content

Commit 09c330d

Browse files
committed
Merge pull request #28 from NataliaLKB/revert-27-typos
Revert "Typos"
2 parents 0b2e226 + 642a8f2 commit 09c330d

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Git for Collaboration is aimed at the second week students of the course, or tho
2121
* [Merge Conflicts](#conflicts)
2222
4. [Introducing Github Flow](#github-flow)
2323

24-
#### [Git for Collaboration](#git-for-collaboration)
24+
#### [Git for Collaboration](#git-collaboration)
2525
1. [Further terminology](#further-terminology)
2626
2. [The Timeline](#timeline)
2727
3. [Committing](#commits)
@@ -73,7 +73,7 @@ Git can provide you with a complete history of every commit made on a project. B
7373

7474
* Being able to see what differences exist between commits
7575

76-
* Being able to move between different commits (or places in time). This is especially useful if something became broken while you were working on it, and you need to start again.
76+
* Being able to move between difference commits (or places in time). This is especially useful if something became broken while you were working on it, and you need to start again.
7777

7878
In the introduction section of this tutorial, we won't be able to cover all these benefits in practise extensively. However, we will aim to give you all the information you will need to know by the end.
7979

@@ -99,7 +99,7 @@ On your local machine, please make sure you have git installed. If you are using
9999

100100

101101
<a name="getting-started" id="getting-started"></a>
102-
### Getting Started
102+
### Getting Starting
103103
The next step is to clone the forked version of this repository. On the main page of the repo, copy the url shown here:
104104

105105
![where to copy url on github](./img/git-clone.png)
@@ -284,7 +284,7 @@ http://scottchacon.com/2011/08/31/github-flow.html
284284
285285
286286
287-
<a name="git-for-collaboration" id="git-for-collaboration"></a>
287+
<a name="git-collaboration" id="git-collaboration"></a>
288288
# Git for Collaboration
289289
290290
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.
@@ -367,13 +367,13 @@ You should aim each commit to be a "safe" version of the project. This means tha
367367
368368
Given that, when you commit is very important. I have heard two very useful guidelines.
369369
370-
The first, is that you complete the task assigned to you, you make several commits at different times during that task. In the end you merge all those commits together to make one very informative commit of that task. I will talk about ways to merge commits together in a later section.
370+
The first, is that a you complete the task assigned to you, you make several commits at different times during that task. In the end you merge all those commits together to make one very informative commit of that task. I will talk about ways to merge commits together in a later section.
371371
372372
The second method is you work through your task and complete it before adding or committing at all. Then you check the status of the repo and see all the files you have changed. The next step is selectively adding and committing
373373
374-
Through my research I have come across many different methodologies, and ultimately you should try to do what seems the most natural to you. I use both of these methodologies depending on the extent of the task before me. The best thing is to always keep in mind that you and your colleagues will inevitably need to go back to your commits and it will help everyone if commits are aptly named.
374+
Through my research I have come across many different methodologies, and ultimately you should try to do what seems the most natural to you. I use both of these methodologies depending on the extend of the task before me. The best thing is to always keep in mind that you and your colleagues will inevitably need to go back to your commits and it will help everyone if commits are aptly named.
375375
376-
Likewise, even in pull requests, you must aim to make your commits a clear and concise summary of what tasks were completed on that branch. That way the person reviewing your pull request understands what they will be reviewing before looking at the code itself.
376+
Likewise, even in pull requests, you must aim to make your commits a clear and concise summary of what tasks where completed on that branch. That way the person reviewing your pull request understands what they will be reviewing before looking at the code itself.
377377
378378
379379
<a name="commit-message" id="commit-message"></a>

0 commit comments

Comments
 (0)