Berikut adalah daftar terperinci dari perintah Git yang berguna, bersama dengan contoh ilustratif:
git init
Inisialisasi repositori Git baru di direktori proyek Anda.
Contoh:
$ git init
Initialized empty Git repository in /path/to/your/project/.git/
git clone [url]
Kloning repositori jarak jauh dari server ke mesin lokal Anda.
Contoh:
$ git clone https://github.com/yourusername/your-repo.git
Cloning into 'your-repo'...
git add [file]
Tambahkan satu atau lebih file ke area pementasan untuk mempersiapkan file commit.
Contoh:
$ git add index.html
$ git add *.css
git commit -m "message"
Buat yang baru commit dengan perubahan yang telah ditambahkan ke area pementasan dan sertakan commit pesan Anda.
Contoh:
$ git commit -m "Fix a bug in login process"
[main 83a9b47] Fix a bug in login process
1 file changed, 5 insertions(+), 2 deletions(-)
git status
Lihat status repositori saat ini, termasuk file yang dimodifikasi dan area pementasan.
Contoh:
$ git status
On branch main
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git restore <file>..." to discard changes in working directory)
modified: index.html
no changes added to commit(use "git add" and/or "git commit -a")
git log
Menampilkan commit riwayat repositori.
Contoh:
$ git log
commit 83a9b4713f9b6252bfc0367c8b1ed3a8e9c75428(HEAD -> main)
Author: Your Name <[email protected]>
Date: Mon Jul 13 12:34:56 2023 +0200
Fix a bug in login process
commit 47f1c32798b7e862c4c69718abf6498255f1a3d2
Author: Your Name <[email protected]>
Date: Sun Jul 12 18:42:15 2023 +0200
Add new homepage
git branch
Daftar semua cabang di repositori dan tandai cabang saat ini.
Contoh:
$ git branch
* main
feature/add-new-feature
feature/fix-bug
git checkout [branch]
Beralih ke cabang lain di repositori.
Contoh:
$ git checkout feature/fix-bug
Switched to branch 'feature/fix-bug'
git merge [branch]
Menggabungkan cabang lain ke dalam cabang saat ini.
Contoh:
$ git merge feature/add-new-feature
Updating 83a9b47..65c6017
Fast-forward
new-feature.html| 10 ++++++++++
1 file changed, 10 insertions(+)
create mode 100644 new-feature.html
git pull
Ambil dan integrasikan perubahan dari repositori jarak jauh ke dalam cabang saat ini.
Contoh:
$ git pull origin main
From https://github.com/yourusername/your-repo
* branch main -> FETCH_HEAD
Already up to date.
git push
Dorong perubahan dari cabang saat ini ke repositori jarak jauh.
Contoh:
$ git push origin main
git remote add [name] [url]
Tambahkan server jarak jauh baru ke daftar repositori jarak jauh Anda.
Contoh:
$ git remote add upstream https://github.com/upstream-repo/repo.git
git fetch
Unduh perubahan dari repositori jarak jauh tetapi jangan integrasikan ke cabang saat ini.
Contoh:
$ git fetch origin
git diff
Bandingkan perubahan antara area pementasan dan file yang dilacak.
Contoh:
$ git diff
git reset [file]
Hapus file dari area pementasan dan kembalikan ke keadaan sebelumnya.
Contoh:
$ git reset index.html
git stash
untuk sementara menyimpan perubahan yang belum dikomit untuk bekerja di cabang lain tanpa melakukan perubahan tersebut.
Contoh:
$ git stash
Saved working directory and index state WIP on feature/branch: abcd123 Commit message
git remote -v
Buat daftar server jarak jauh dan alamat urlnya.
Contoh:
$ git remote -v
origin https://github.com/yourusername/your-repo.git(fetch)
origin https://github.com/yourusername/your-repo.git(push)
upstream https://github.com/upstream-repo/repo.git(fetch)
upstream https://github.com/upstream-repo/repo.git(push)