Skip to content

Latest commit

 

History

History
23 lines (17 loc) · 408 Bytes

File metadata and controls

23 lines (17 loc) · 408 Bytes

Belajar Git

dari channel codepanda.id (https://www.youtube.com/playlist?list=PLM2HKtjUeZQiDc6b7ZRyqBaWkA9SWO-KZ)

Basic Commands

Init project baru

git init
git remote add [link github]
git add .
git commit -m "[commit message]"
git push origin master

Push perubahan ( file baru, ubah file, hapus file, dll )

git add .
git commit -m "[commit message]"
git push origin master