Git - GitHub Cheat Sheet
Git-GitHub Cheat Sheet by Kshitija - Click on this link for CheatSheet

Search for a command to run...
Articles tagged with #git
Git-GitHub Cheat Sheet by Kshitija - Click on this link for CheatSheet

Git provides multiple mechanisms for undoing or altering past commits. Two such commands are git revert and git reset. 1. Git Revert: Undo The git revert command creates a new commit that undoes the changes made in a previous commit. This is a safe w...

Branching in Git Creating a New Branch Creating a branch is straightforward. Here's how to create a new branch named "new-branch1" git branch #On which branch you are right now git branch new-branch1 #Create new branch git checkout new-branch1 #swit...

These steps assume that you have already installed Git Bash on your computer and have created a GitHub account.

Install GIT in your local machine, Clone GitHub Repository to Local, Make Changes and Push to Remote Repository

Git Stash: Git stash is a command that allows you to temporarily save changes you have made in your working directory, without committing them. This is useful when you need to switch to a different branch to work on something else, but you don't want...
