Work flow of Git and Github
1. git init
The above image is the initial stage of our local repository. if we initiate that folder, with git init command the . git folder will be created.
2. Git add .
The second step we need to do is git add . all files are added to the staging are, now the files are tracked. (which are in green colour)
3. git commit -m “commit message”
After adding a file to the staging area we need to commit those message by doing commit message.