Please enable JavaScript.
Coggle requires JavaScript to display documents.
GIT - Coggle Diagram
GIT
-
-
😑
Theory
Version Control
is a system that records changes to a file
or set of files over time so that you can recall
specific versions later
Centralized Version Control Systems
Distributed Version Control Systems
- Git
- Mercurial
- Bazaar
- Darcs
-
-
-
Git basic workflow
You selectively stage just those changes you want to be part of your next commit, which adds only those changes to the staging area.
You do a commit, which takes the files as they are in the staging area and stores that snapshot permanently to your Git directory.
-
:smiley:
Files
File States
Commited
- The data is safely stored in your local database.
Tracked
- Files that were in the last snapshot
Modified
- You have changed the file but have not committed it to your database yet
-
Staged
- You have marked a modified file in its current version to go into your next commit snapshot.
-
-
-
-