Create a working copy of a local or remote repository
(Done only once to obtain a project)
git clone git@github.com:/
For every change you want to commit back into the repository
Fetch and merge changes on the remote server to your working directory
git pull origin master
List the files you’ve changed and those you still need to add or commit
git status
View updates you made to the files
git diff “

Last Updated on June 8, 2020

Share this