เครื่องมือที่จำเป็น

คำสั่งรัน Python

python main.py

เชื่อม Git กับ GitHub.com

  • ตั้งค่า Git เปิด cmd หรือ terminal ใช้คำสั่ง
git config --global user.name "ชื่อ username ของคุณใน github.com"
git config --global user.email "อีเมล ของคุณใน github.com"

คำสั่ง git เบื้องต้น

  • สร้าง branch
git checkout -b main
  • บันทึกเวอร์ชั่นโค้ด
git add .
git commit -m "ข้อความ commit"
  • อัปโหลดเวอร์ชั่นโค้ดขึ้น github.com
git push origin main
  • ดึงข้อมูลจาก Repository
git pull origin main
  • โคลน Repository จาก github.com
git clone git@github.com:username/repository-name.git
  • เชื่อมต่อกับ Repository ที่มีอยู่
git remote add origin git@github.com:username/repository-name.git
  • ตรวจสอบสถานะ
git status