- เริ่มต้นสร้าง Git repository หรือสร้างโฟลเดอร์ .git (hidden folder) ด้วยคำสั่ง
git init
- เพิ่มไฟล์เข้าไปใน staging area ด้วยคำสั่ง
git add <file name> หรือ git add . เพื่อ add ไฟล์ทั้งหมด
- Commit ไฟล์ไปยัง local repository ด้วยคำสั่ง
git commit -m "<commit-message>"
- ตรวจสอบสถานะของไฟล์ด้วยคำสั่ง
git status
- ตรวจสอบ remote repository ด้วยคำสั่ง
- Add remote repository ด้วยคำสั่ง
- เปลี่ยน remote url ด้วยคำสั่ง
- ลบ remote repository ด้วยคำสั่ง
- ตรวจสอบ branch ปัจจุบันด้วยคำสั่ง
- ตรวจสอบ branch ทั้งหมดด้วยคำสั่ง
- เปลี่ยนชื่อ branch ปัจจุบันด้วยคำสั่ง
- สร้าง branch ใหม่ด้วยคำสั่ง
- เปลี่ยน branch ปัจจุบันด้วยคำสั่ง
- ลบ local branch ด้วยคำสั่ง
- ลบ remote branch ด้วยคำสั่ง
- Push local repository ไปยัง remote repository ด้วยคำสั่ง
- Clone remote repository ไปยัง local repository ด้วยคำสั่ง
- ดึงการอัพเดทล่าสุดจาก remote repository ด้วยคำสั่ง
- Clone remote repository ของ user อื่นไปยัง remote repository ของตัวเองด้วยคำสั่ง
- ส่ง Pull request ไปยัง remote reposity ของ user ต้นทางที่ clone มา เพื่อขอให้ตรวจสอบและทำการ merge pull request ด้วยคำสั่ง
- Merge local repository ปัจจุบันกับ local branch ด้วยคำสั่ง