diff --git a/index.html b/index.html
index 6e0068b..2737d46 100644
--- a/index.html
+++ b/index.html
@@ -6,7 +6,7 @@
Git
-
+
@@ -33,8 +33,8 @@
+
+
@@ -65,7 +65,7 @@ Community
Social
- - LAN parties, cardboard evenings, movie nights and post exam commiseration.
+ - LAN parties, cardboard nights, movie nights and post-exam commiseration.
- Guest lectures from leaders in their field of expertise.
- Upcoming Games Day on the 3rd of September!
@@ -110,7 +110,7 @@ Safety
If we make a mistake in our code and break everything, how do we fix it?
-
- Copy and past folders to track versions?
+ Copy and paste folders to track versions?
This is horrible! Imagine the hundreds of folders to manage.
@@ -119,11 +119,11 @@ Safety
-
- Instead use a Version Control System
+ Use a Version Control System (VCS) instead
Changes made to files are stored as differences between versions.
- When you've made a change to a file(s), save the difference it into the VCS.
+ When you've made a change to a file(s), save the difference into the VCS.
@@ -142,15 +142,14 @@ Collaboration
No. This is the old way of sharing progress.
- Comparing two files and finding the difference between the two is very tedius and time consuming.
+ Comparing two files and finding the difference between the two is very tedious and time-consuming.
- Instead use a Version Control System
+ Create online VCS repository instead
- Changes made to files are stored as differences between versions.
- When you've made a change to code, save the difference it into the VCS.
+ If you're using Git, examples of online repositories include GitHub, BitBucket and GitLab.
@@ -168,7 +167,7 @@ Maintenance
Fix current code set and re-deploy.
- More than likely, the programme has changed significantly and is now incompatible with the customer's system.
+ More than likely, the program has changed significantly and is now incompatible with the customer's system.
The 'bug' could have been built into a new feature or is a dependency in something new.
@@ -203,7 +202,7 @@ What is Git?
What is a repository?
- A repo is your project code and history of changes that were made.
+ A repo is your project code and the history of changes that were made.
What goes in a repo?
@@ -250,12 +249,12 @@ > git init
> git status
-
- Show us the status of the repo
+ Shows us the status of the repo
The branch we're on
- The files have changed
- The files are staged for commit
+ The files that have changed
+ The files that are staged for commit
-
@@ -275,7 +274,7 @@
> git status
> git add <file> [...]
-
- Adds a file to be tracked by git
+ Adds a file to be tracked by Git
Simply adding a file to the repository does not mean its changes are being tracked by git.
@@ -325,7 +324,8 @@ > git commit
git commit -m 'Make some really cool changes'
- The option -m 'msg' is a shortcut to add all tracked files and write a commit message in line before committing.
+
+
@@ -480,7 +480,7 @@ GitHub
- What is Github?
+ What is GitHub?
GitHub is a web app that hosts your repos remotely.
It has a great web interface to see commits and statistics.
@@ -550,7 +550,7 @@ Creating a Repo
- You can invite people to collaborate on your project.
- Student accounts have unlimited free private repos!
- Use these for assignments and personal projects. Make them public after marks are released.
- - Having your code public on github is a great way to show potential employers your skills.
+ - Having your code public on GitHub is a great way to show potential employers your skills.