How to clone, push, pull code from git using basic git command lines?
00:31 Clone code to local: git clone [/path/to/repository]
02:15 Add the changes to stage: git add . OR git add [filename]
02:47 Commit the changes to local repository: git commit -m 'test commit'
03:37 Push code to remote repo: git push origin master
04:28 Pull code from remote repo: git pull
#git #developer