🔥Limited Offer: Get 50% OFFon AI & Full Stack Courses🔥
Back to Git Notes
Topic #5

Git Get Started


Change Platform:


Get Started with Git

Now that Git is installed, and it knows who you are, you can start using Git.

Lets create our first repository

Key Steps to Get Started

  • Create a project folder
  • Navigate to the folder
  • Initialize a Git repository

Creating Git Folder

Start by creating a new folder for our project:

Example

mkdir myproject
cd myproject

mkdir creates a new directory.

cd changes our working directory.

Now we are in the correct directory and can initialize Git!

Note: Open Git Bash Here (Windows) If you're using Windows, you can open Git Bash directly in your project folder: Right-click the folder in File Explorer Select Git Bash Here This opens a terminal window in the correct location.


Initialize Git

Now that we are in the correct folder, we can initialize Git on that folder:

Example

git init
Initialized empty Git repository in /Users/user/myproject/.git/

You just created your first Git Repository!


What is a Repository?

A Git repository is a folder that Git tracks for changes.

The repository stores all your project's history and versions.


What Happens When You Run git init ?

Git creates a hidden folder called .git inside your project.

This is where Git stores all the information it needs to track your files and history.

Example: Show Hidden .git Folder (Linux/macOS)

ls -a
.  ..  .git

Troubleshooting

  • git: command not found Solution: Make sure Git is installed and added to your PATH. Restart your terminal if needed.
  • Permission denied Solution: Try running your terminal as administrator (Windows) or use sudo (macOS/Linux) if needed.

Want to go beyond the notes?

Join CodingNow 2.0's Git course — live mentorship, real projects, and 100% placement support.

Enroll Now — Free Demo Available

Git Get Started – FAQs

Quick answers about learning Git Get Started in Git.

This free note from CodingNow 2.0 explains Git Get Started in Git — concept, syntax and worked code examples you can copy, run and revise before interviews.
Yes. Every Git topic on CodingNow 2.0, including Git Get Started, is 100% free with no signup required.
With focused practice, most students grasp Git Get Started in 1–3 days from these notes; pairing it with CodingNow 2.0's mentor-led course takes you to job-ready depth faster.
Use the code examples in this note, then ask doubts for free on the CodingNow 2.0 Community (/community) — expert instructors answer within 24 hours.
WhatsApp
Call NowEnroll Now