Some useful git commands
21 Apr 2024 - Gengar
Commands
list all branches
git branch -a
get the difference between two branches, including a local branch and a remote branch
git diff <mainbranch_path> <remotebranch_path>
Clone a repository
git clone <repository_url>
Check the status of your working directory
git status
Add changes to the staging area
git add <file_or_directory>
git add .
Commit changes with a message
git commit -m "your commit message"
Push changes to the remote repository
git push origin <branch_name>
git push
Pull changes from the remote repository
git pull origin <branch_name>
Create a new branch
git checkout -b <new_branch_name>
Switch to an existing branch
git checkout <branch_name>