Mengambil dari repo
- git clone [lokasi]
- git clone https://github.com/bpdp/buku-cloud-nodejs.git (jika menggunakan https)
- git clone git://github.com/bpdp/buku-cloud-nodejs.git (jika menggunakan git)
- Buat direktori baru
- Masuk ke direktori baru tersebut
- Menambahkan semua file:
- git add -A
- Commit:
- git commit -m "First commit - initializing empty repo"
- git status
- Menambahkan file
- git add [file]
- Commit:
- git commit -m "Menambahkan file
untuk ..." - push ke github
- Edit file
- Commit:
- git commit -m "Pesan"
- push ke github
- Menetapkan repo:
- git remote add origin
- contoh: git remote add origin https://github.com/bpdp/buku-cloud-nodejs.git
- Push:
- git push origin master
Git dan Github: Petunjuk Awal