0% found this document useful (0 votes)
3 views

Git - Commands

This document provides a simple guide for getting started with Git, outlining essential steps such as initializing a repository, making changes, and managing branches. It includes commands for cloning projects, staging and committing changes, pushing to remote repositories, and understanding differences between Git operations. The guide is aimed at beginners looking to familiarize themselves with Git functionalities.

Uploaded by

mferrer0976
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
3 views

Git - Commands

This document provides a simple guide for getting started with Git, outlining essential steps such as initializing a repository, making changes, and managing branches. It includes commands for cloning projects, staging and committing changes, pushing to remote repositories, and understanding differences between Git operations. The guide is aimed at beginners looking to familiarize themselves with Git functionalities.

Uploaded by

mferrer0976
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

*𝐆𝐞𝐭𝐭𝐢𝐧𝐠 𝐒𝐭𝐚𝐫𝐭𝐞𝐝 𝐰𝐢𝐭𝐡 𝐆𝐢𝐭 - 𝐀 𝐒𝐢𝐦𝐩𝐥𝐞 𝐆𝐮𝐢𝐝𝐞*

Do Like 👍👍 & Repost 🔄📲


..........................................................
🤝follow DEEPAK SHANKAR DUBEY 📲 for more...
..........................................................

*Initialize Your Project*


🌀 *Step 1: Initiate Your Repository*
Start by running git init in your project directory to create a new Git repository.

📥 *Step 2: Clone an Existing Project*


If you're joining an existing project, use git clone <repo> to copy it to your
local machine.

*Making Changes*
🔄 *Step 3: Make Changes*
Modify your files as needed.

📊 *Step 4: Check Status*


Keep tabs on your changes with git status to see what's ready to commit.

➕ *Step 5: Stage Changes*


Add specific files with git add <filename>, or add all changes at once with git add
. or git add -A.

💬 *Step 6: Commit Changes*


Commit your staged changes with a descriptive message using git commit -m "Commit
message".

*Branching*
🌿 *Step 7: List Branches*
View all local branches with git branch.

🌱 *Step 8: Create a New Branch*


Start a new branch with git branch <branchname>.

🔄 *Step 9: Switch Branches*


Move to a different branch using git checkout <branchname>.

🔄 *Step 10: Merge Changes*


Merge changes from one branch into another using git merge <branchname>.

*Remote Repositories*
🌐 *Step 11: Push to a Remote*
Share your commits with the remote repository using git push origin <branchname>.

🔄 *Step 12: Pull Updates*


Keep your local repo up-to-date with changes from others with git pull.

🔗 *Step 13: Remote Connections*


Check connected remote servers with git remote -v.

*Understanding Differences*
🔄 *Step 14: Fetch vs. Pull*
Use git fetch to download remote data without merging, while git pull combines and
updates your local files.

🔄 *Step 15: Merge vs. Rebase*


Use git merge to combine branches with a new commit or git rebase to create a
cleaner history.

↩ *Step 16: Reset vs. Revert*


Undo changes with git reset by discarding local changes, or use git revert to
create a new reversing commit, preserving history.

Image credit: Brij kishore Pandey

Learn web development at W3Schools.com😇

You might also like