Git Basics
What is Git?
Git is a fast version control system that enables asynchronous code collaboration, code versioning, and independent development of features with branches. It was created by Linus Torvalds in 2005 and is currently maintained by Junio Hamano.
What does Git do?
- Let's you manage projects with repositories.
- Allows you to control changes with Staging and Committing.
- Gives you Branching and Merging capabilities to work on different parts and versions of a project.
- Gives you Push and Pull capabilities syncronize copies of your project.
Git vs Github
- Git and Github are not the same.
- Github makes tools that utilize Git.
- Github is the world's largest host of source control and is owned by Microsoft. It is a cloud based storage platform to host repositories.
- Github allows for work on a single repository by multiple developers with real time editing.
- Github also has a socialization aspect which makes a useful platform for web professionals.
- Git is a local version control system (VCS).
- Github is a web-based platform that uses git's VCS.
Installation
Git can be downloaded for free!
Git via CLI
To start using Git, open your command shell.
Windows: You can use the Git bash which is included in Git for Windows. Alternatively if you're using WSL, follow the steps similar to Linux and Mac.
Linux & Mac: Use the Built-in terminal.
Let's check for a proper install by running the following command in the command shell:
git --version
If installed properly, the output should be in format git version X.Y
.
[user@localhost] $ git --version
git version 2.33.1.windows.1
Configuring Git
When performing git commits, git needs to know who you are. So let's configure our credentials.
Use the following commands to configure your username and email for git:
git config --global user.name "YOUR_USERNAME"
git config --global user.email "USER@example.com"
Use --global
to set the username and email for every repository on your computer.
Remove --global
if you only want set the credentials for the current repo.
Git Help
Git comes with integrated documentation for all of it's commands. It's good habit to utilize documentation for a program when learning or when confused on how something works.
In order to access git's help documentation use either of the two commands:
git
command
-help
All available options for the the specifiedcommand
git help --all
All possible commands