Skip to content

Commit & Push files to Github

MiNiMosca edited this page Jul 20, 2017 · 2 revisions

1. เข้าไปยัง folder ที่จะเก็บ project

2. คลิกขวาเลือก Git Bash Here

3. ตรวจสอบ status ของแต่ละไฟล์ด้วยคำสั่งต่อไปนี้ ชื่อไฟล์ที่มีการเปลี่ยนแปลงจะขึ้นสีแดง

git status

4. add file ทั้งหมดที่จะ commit ด้วยคำสั่งต่อไปนี้ จากนั้นตรวจสอบ status ไฟล์อีกครั้ง จะเห็นว่าชื่อไฟล์จะเปลี่ยนเป็นสีเขียว

git add .
git status

5. สั่ง commit files และ push files ขึ้นไปยัง github โดยในการ commit สามารถใส่ comment ได้ด้วย

git commit -m "comment here"
git push origin master