Welcome to the Git Commands repository! This README provides an overview of essential Git commands to help you get started with version control and collaborative development.
- Git Basics
- Repository Setup
- Branching
- Committing Changes
- Updating Changes
- Merging
- Remote Repositories
- Undoing Changes
- Git Extras
- Resources
git initgit clone <repository-url>git add <file1> <file2> ...git commit -m "Commit message"git branch <branch-name>git checkout <branch-name>git checkout -b <branch-name>git statusgit diffgit fetchgit pullgit pushgit merge <branch-name>git remote add <remote-name> <remote-url>git fetch <remote-name>git pull <remote-name> <branch-name>git checkout -- <file>git reset <file>git reset --soft HEAD^git loggit show <commit-hash>git remote show <remote-name>