Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 350 Bytes

README.md

File metadata and controls

21 lines (16 loc) · 350 Bytes

Some basic Git commands are:

git status
git add
git commit

For remote access...

git remote add origin https://github.com/GilGlendys/FE_Project.git
git push -u origin master

Sample:

git add README.md
git commit -m "first commit"
git remote add origin https://github.com/GilGlendys/FE_Project.git
git push -u origin master