ในตอนที่ 2 นี้ ผมจะอธิบายเกี่ยวกับการนำโปรเจคขึ้น Github และคำสั่งพื้นฐานต่าง ๆ เช่น add commit และ push เป็นต้น ส่วนท่านใดที่ยังไม่ทราบเกี่ยวกับการสมัครหรือการสร้าง repository ก็สามารถย้อนกลับไปอ่านตอนที่ 1 ได้ครับ ตอนที่ 1: การใช้งาน Github เบื้องต้น (ตอนที่ 1/2 การสมัครสมาชิก) การ upload ขึ้น github 1. เปิด command prompt หรือ teminal บน folder ที่เราต้องการอัพขึ้น github 2. พิมพ์คำสั่ง ดังต่อไปนี้ Code (text): echo "# gitstart" >> README.md Code (text): git init Code (text): git add README.md Code (text): git status Code (text): git config --global user.email "<e-mail ที่ใช้สมัคร github>" git config --global user.name "<username>" Code (text): git commit -m "gitstart commit" Code (text): git remote add origin https://github.com/<username>/<ชื่อ repository เช่น firstProject >.git Code (text): git remote -v Code (text): git push -u origin master เพียงเท่านี้ ไฟล์หรือโปรเจคของเราก็อยู่บน git เรียบร้อย ซึ่งสามารถดาวน์โหลดมาพัฒนาหรือแก้ไขต่อได้ การ download จาก github 1. เปิด command prompt หรือ teminal บน folder ที่เราต้องการดาวน์โหลดจาก github 2. พิมพ์คำสั่ง ดังต่อไปนี้ Code (text): git init Code (text): git remote add origin https://github.com/<username>/<ชื่อ repository เช่น firstProject>.git Code (text): git pull origin master เพียงเท่านี้ ไฟล์ที่เราต้องการดาวน์โหลด ก็จะอยู่ในโฟลเดอร์ที่เราต้องการเรียบร้อยแล้ว Credit: windowsbank or BankCoE