Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 623a28e

Browse files
committed
Add note on decentralisation
1 parent b480188 commit 623a28e

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

know_git.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,17 @@
11
---
22
layout: default
3-
unitstandard: 115362-SO1-AC1, 115362-SO2-AC1
3+
unitstandard: 115362-SO1-AC1, 115362-SO2-AC1, 115362-SO2-AC3
44
---
55

66
## Git - Version Control
77

8-
As a software developer you will be writing code not only on your own, but with other team members. You will need some way of keeping track of what you have done, and what your teammates have done.
8+
As a software developer you will be writing code not only on your own, but with other team members. You will need some way of keeping track of what you have done, and what your teammates have done, and making sure that you don't overwrite each other's changes.
99

1010
Have you ever lost your changes in a Word document or text file, because you lost the USB Drive or because you saved over a file by accident? These are the kind of things that might start happening as you start to write code.
1111

12-
Luckily there's a category of tools called Version Control Software which allow you to manage the files that you create and change everyday as a software developer.
13-
You can manage your own files, share your files and changes with your colleagues, and even share them other people on the internet.
12+
Luckily there's a category of tools called VCS (Version Control Software) which allows you to manage the files that you create and change everyday as a software developer. You can manage your own files, share your files and changes with your colleagues, and even share them other people on the internet.
1413

15-
* The Version Control Software we will be using is called git. This program will run on your laptop.
14+
* The Version Control Software we will be using is called git. This program will run on your laptop. Git is a distributed VCS. That means that everyone working on the code keeps a copy of it on their own machine. There's often a copy in a central, shared, location too.
1615
* Create a new folder called `Projects` in your home directory, using the terminal. Each new project you start should live in its own directory inside of your `Projects` folder. In git terminology, the code for each project is called a repository.
1716
* [GitHub](http://github.com) is the site where you will publish and share your code on the web. Your code will live at `http://github.com/<your-github-user-name>/<your-repository-name>`.
1817

0 commit comments

Comments
 (0)