Delete a local branch: `git branch -d branch-name`
Force delete a local branch: `git branch -D branch-name`
Delete a remote branch: `git push origin --delete branch-name`
Delete...
Install Git
Configure your name and email
Create or open a repository
Check repository status
Add files to the staging area
Commit changes
View commit history
Create and switch branches
Merge branches
Pull...