Git Cheat Sheet
สำหรับผู้ที่เพิ่งเข้ามาอ่าน และสนใจการเรียน Git ผมได้ทำการเขียนบทความเกี่ยวกับ Git ไว้แล้ว เชิญอ่านได้ที่นี่ครับ Git คืออะไร ? + พร้อมสอนใช้งาน Git และ Github
Setup Git
git config --global user.name "DevAhoy"
: ตั้งชื่อ (เปลี่ยน "DevAhoy" เป็นชื่อของคุณเอง)git config --global user.email "devahoy@gmail.com"
: ตั้งค่าอีเมล์ (เปลี่ยน email เป็นชื่อคุณเอง)git config --global color.ui auto
: ตั้ง enable สีใน command line
Create Repo
git init
: ทำการสร้าง local repo (ระบบจะสร้างโฟลเดอร์.git
ไว้ใน directorygit clone URL
: ทำการ clone repo จาก Server (Github/Bitbucket) มาที่ local
Local Repo
git status
: ทำการเช็คสถานะใน directorygit add FILENAME
: เพิ่มไฟล์ FILENAME ไปที่staging
(พร้อมสำหรับcommit
)git add .
: เพิ่มทุกไฟล์ที่มีการแก้ไข/เปลี่ยนแปลงgit diff
: แสดงการเปลี่ยนแปลงของไฟล์git diff FIRST_BRANCH SECOND_BRANCH
: ทำการเปรียบเทียบระหว่าง branch1 กับ branch2git log
: โชว์ log history ของ gitgit log --online
: โชว์ log history แบบ 1 บรรทัดgit commit -m "Message"
: ทำการ commitstaged
บันทึกลง Project Historygit commit
: บันทึก Project History แต่ละเปิด Text Editor ขึ้นมาเพื่อใส่ commit messagegit commit --amend
: เอาไว้แก้ไข commit ล่าสุด เช่น อยากเพิ่มไฟล์ที่หลัง หลังจากcommit
แล้ว (รายละเอียดเพิ่มเติม : แก้ไข git commit ล่าสุด)
Remote Repo
git push origin master
: ทำการ push โปรเจ็คไป remote repository (origin
ชื่อ remote name,master
คือชื่อ default ของ branch)git remote add ARG1 ARG2
: เพิ่ม remote มี 2 arguments : ARG1 = remote name (default : origin) , ARG2 = remote URLorigin
vsupstream
: กรณีที่เราทำการ fork repo (เฉพาะ Github)git remote add origin URL
: คือ URL repo เรา ส่วนgit remote add upstream URL
คือ URL ต้นฉบับที่เราทำการ fork มาgit remote -v
: โชว์รายชื่อ remote URLgit remote set-url ARG1 ARG2
: ตั้งค่า/เปลี่ยน remote URL (มี 2 arguments : ARG1 = remote name, ARG2 = remote URL)git remote rename origin destination
: เปลี่ยนชื่อ remotegit remote rm REMOTE_NAME
: ลบ remote repository
Branch
git branch
: โชว์ list ของ branch ทั้งหมดgit branch BRANCH_NAME
: สร้าง branch ใหม่git checkout BRANCH_NAME
: ทำการเปลี่ยน branch (ย้าย HEAD ไป branch ใหม่) ต้องมี branch อยู่git checkout -b BRANCH_NAME
: ทำการสร้างและเปลี่ยนไป branch ใหม่ (มีค่าเท่ากับgit branch BRANCH_NAME
ต่อด้วยgit checkout BRANCH_NAME
)git branch -d BRANCH_NAME
: ทำการลบ branchgit merge BRANCH_NAME
: ทำการรวม history ของ branch
Undo
git reset --hard HEAD
: reset local repo- `git reset COMMIT : ทำการ undo ทุกๆอย่างกลับไปที่ COMMIT ก่อนหน้า
git reset FILENAME
: ทำการ undo ไฟล์ที่เคย add ไปgit revert
: ทำการ undo แล้วสร้าง commit ใหม่ (ต่างกับreset
ตรงที่reset
จะย้อนไป commit เก่า แต่revert
จะสร้าง commit ใหม่)
Remove
git rm FILENAME
: ทำการลบไฟล์ และให้ git ทำการuntracked
ไฟล์ด้วยgit rm --cached FILENAME
: ลบไฟล์ออกจาก git repo เฉยๆ ไม่ได้ลบใน directory
Sync
git fetch
: เช็คการเปลี่ยนแปลงจาก remote repogit merge
: ทำการรวมการเปลี่ยนแปลงจาก remote มาที่ local repogit pull
: เช็คการเปลี่ยนแปลง และรวม (เหมือนกับการทำgit fetch
และต่อด้วยgit merge
)git fetch upstream
: ทำการเช็คการเปลี่ยนแปลงจากไฟล์ต้นฉบับที่เราทำการ fork มาgit rebase
: เหมือนกับgit merge
แต่จะยุบ branch ที่แตกออกมารวมกับ branch หลักเลย
Generate SSH
ssh-keygen -t rsa -C "devahoy@gmail.com"
: ทำการ generate SSH Key ไฟล์จะถูก gen ไว้ที่~/.ssh/id_rsa
ssh -T git@github.com
: ทดสอบ test SSH ว่า OK หรือไม่
แหล่งเรียนรู้อื่นๆเพิ่มเติม
- Authors
- Name
- Chai Phonbopit
- Website
- @Phonbopit