This command is used to initialize a new Git repository.
git init
This command is used to clone an existing Git repository.
git clone [repository URL]
This command is used to check the status of the files in the repository.
git status
This command is used to stage files for commit.
git add [file]
This command is used to commit changes to the repository.
git commit -m "[commit message]"
This command is used to push changes to a remote repository.
git push [remote name] [branch name]
This command is used to pull changes from a remote repository.
git pull [remote name] [branch name]
This command is used to list, create, or delete branches.
git branch [options] [branch name]
This command is used to switch between branches.
git checkout [branch name]
This command is used to merge changes from one branch into another.
git merge [branch name]