// Clone Projrct จาก Git Repository
git clone <repo>
// แสดงชื่อและ url ของ remote repo
git remote
หรือ
git remote -v
// เพิ่มชื่อและ url ของ remote repo
git remote add <remote name> <remote url>
// ส่งไฟล์ทั้งหมดไปยัง repo
git push -u <ชื่อ branch remote> <ชื่อ branch local>
// ตรวจสอบที่ remote มีการแก้ไขอะไรหรือไม่
git fetch <ชื่อ branch remote>
ตัวอย่าง git fetch origin
// การ pull ไฟล์จาก repo
git pull <ชื่อ branch remote> <ชื่อ branch local>