Skip to content

Latest commit

 

History

History
15 lines (15 loc) · 280 Bytes

README.md

File metadata and controls

15 lines (15 loc) · 280 Bytes

#Basic Git Commands

Creating a repo

touch README.md
$git add README.md
$git commit -m "First commit"
$git remote add origin https://github.com/levdavid/GitCommands
$git push -u origin master

###to reupload

$git add .
$git commit -m 'what has changed'
$git push