forked from Ansumanbhujabal/Git_Workshop_test
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkiwisquash.txt
13 lines (11 loc) · 838 Bytes
/
kiwisquash.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
1.mkdir directory_name
2.ls -a
3.git init
4.touch filename.extension
5.cat filename.extension
6.git is a version control system.
It helps to update,insert and delete files in repos and switch between versions through a command line interface.
On the other hand, Github is a development environment where remote repositories are modified locally.
By forking cloning it into local system, necessary local changes called commits can be made in the files and directories through a friendly UI.
Commits follow a push and pull system, where they're pushed from local repos and the owner of the repo up in the hierarchy can view, merge, reject or comment on the commits.
Basically it is a hub for interaction between developers working under same project. all developers in all branches can view the work of others and collaborate with them.