Practical git commands, this will be updated as needed and by needed I mean as I need to remember things I don't know
Commands | Description |
---|---|
git --version | git version |
git checkout [branchname] | go to branch **first step before any work is done |
git status | check status of git repositories |
git checkout -b [branchname] | create new branch from current branch |
git branch -D [branchname] | delete local branch |