Skip to content

Latest commit

 

History

History
22 lines (17 loc) · 457 Bytes

how-to-git.org

File metadata and controls

22 lines (17 loc) · 457 Bytes

Git basics

Git clone

git clone [email protected]:hsgr/creative-coding.git

Git status - add - commit - push

git status # ask if there are any changes in your files
git add . # add changes to stage - or file name
git commit -m 'name of commit'
git push # upload to github //
# git push origin master

Git pull

git pull origin master # update your repo and propose changes