Basic Git commands
Here is a list of some useful git commands.
Initialize empty Git repository
git init
Stage a file
git add filepath
Stage all files
git add .
Commit file changes
git commit -m "commit message"
Check for staged and unstaged files
git status
Push commit...
temitope.hashnode.dev2 min read