Git GitHub
Git GitHub
Git GitHub
Git
Git is a popular version control system. It was
created by Linus Torvalds in 2005, and has
been maintained by Junio Hamano since then.
It is used for:
• Tracking code changes
• Tracking who made changes
• Coding collaboration
Features
1. Distributed
2. Compatiable
3. Non-Linear
4. Lightweight
5. Speed
6. Open Source
7. Reliable
8. Secure
What does Git do?
• Now since we have all the files that are to be tracked and are ready in
the staging area, we are ready to commit our files using the git
commit command.
• Commit helps us in keeping the track of the metadata of the files in
our staging area.
• We specify every commit with a message which tells what the commit
is about. Git preserves the information or the metadata of the files
that were committed in a Git Directory which helps Git in tracking files
and basically it preserves the photocopy of the committed files.
• Commit also stores the name of the author who did the commit, files
that are committed, and the date at which they are committed along
with the commit message.
• git commit -m <Commit Message>
Git Version Control System