Fitur-Fitur GitHub & Simulasi Kerja Tim

Ahmad Faizulhakim
28 Agustus 2026
40 minutes

10.1 Fitur-Fitur Penting GitHub

FiturFungsi
IssuesMencatat bug, ide fitur baru, atau tugas
Pull RequestMengajukan & mereview perubahan (bagian 8)
ProjectsPapan manajemen tugas ala Trello
ActionsOtomatisasi (misal testing otomatis)
ForkMenyalin repo orang lain ke akun sendiri
README.mdFile deskripsi project yang tampil di halaman utama repo
.gitignoreDaftar file/folder yang tidak perlu ikut disimpan Git

10.2 Latihan: Simulasi Kerja Tim

Skenario: 3 anggota tim (A, B, C) mengerjakan 1 repo bersama.

# Semua clone repo yang sama
git clone https://github.com/komandro/project-cbl.git
cd project-cbl

# A, B, C masing-masing bikin branch sendiri
git switch -c feat/halaman-beranda   # A
git switch -c feat/halaman-profil    # B
git switch -c feat/halaman-kontak    # C

# Masing-masing kerja & push
git add .
git commit -m "feat: tambahkan halaman beranda"
git push -u origin feat/halaman-beranda

Setiap orang buka Pull Request dari branch masing-masing ke main, minta review, lalu merge satu per satu. Kalau ada konflik, selesaikan seperti Bagian 9.

Tags

git github pull-request latihan