| How To | Platform Name | Command Line | Notes | Actions |
|---|---|---|---|---|
| Stage files for commit | Git | git add <file> | Edit Delete | |
| Stage all changes | Git | git add . | Edit Delete | |
| Commit changes with a message | Git | git commit -m "your message" | Edit Delete | |
| View commit history | Git | git log | Edit Delete | |
| Create a new branch | Git | git branch <branch_name> | Edit Delete | |
| Switch to another branch | Git | git checkout <branch_name> | Edit Delete | |
| Create and switch to a new branch | Git | git checkout -b <branch_name> | Edit Delete | |
| Merge a branch into current branch | Git | git merge <branch_name> | Edit Delete | |
| Delete a branch locally | Git | git branch -d <branch_name> | Edit Delete | |
| Push changes to remote repository | Git | git push origin <branch_name> | Edit Delete |
