Skip to main content

ACS Workshop (github)

Workshop 1

Merge file and push 

1. สร้าง Git repository ใหม่
git init

2. กำหนดชื่อผู้ใช้และอีเมลล์ที่ใช้ในระบบ global (แทนที่ "John Doe" ด้วยชื่อของคุณ)
git config --global user.name "John Doe"
git config --global user.email "[email protected]"

3. หมายเหตุ: ไม่มีการกำหนดค่า "user.password" ใน Git โดยทั่วไป รหัสผ่านจะถูกจัดการโดยผู้ให้บริการ Git hosting (เช่น GitHub, GitLab) และคุณจะต้องป้อนรหัสผ่านของคุณเมื่อต้องการใช้

4. สร้างไฟล์ใหม่ชื่อ "readme.md" และทำการเพิ่มข้อความลงไปในไฟล์
echo "นี่คือเนื้อหาในไฟล์ readme.md" >> readme.md

5. เพิ่มการเปลี่ยนแปลงในไฟล์ไปยัง staging area เพื่อทำการ commit
git add .

6. ทำการ commit การเปลี่ยนแปลงพร้อมข้อความอธิบาย
git commit -m "คอมมิตต์เริ่มต้น: เพิ่มไฟล์ readme.md"

7. ทำการ push การเปลี่ยนแปลงไปยัง remote repository (คาดว่าคุณได้ตั้งค่า remote แล้วและให้ชื่อว่า "origin")
git push origin main

8. สร้าง branch ใหม่ชื่อ "feature"
git branch feature

9. สลับไปที่ branch "feature"
git checkout feature

10. ทำการเพิ่มการเปลี่ยนแปลงเพิ่มเติมในไฟล์ "readme.md"
echo "นี่เป็นการแก้ไขเพิ่มเติมในไฟล์ readme.md" >> readme.md

11. เพิ่มการเปลี่ยนแปลงเพิ่มเติมในไฟล์ไปยัง staging area
git add .

12. ทำการ commit การเปลี่ยนแปลง
git commit -m "อัปเดตไฟล์ readme.md ใน branch feature"

13. ทำการ push branch "feature" ไปยัง remote repository
git push origin feature

14. สลับกลับมาที่ branch "main"
git checkout main

15. รวมการเปลี่ยนแปลงจาก branch "feature" กลับเข้าสู่ branch "main"
git merge feature

16. แก้ไขข้อขัดแย้งที่เกิดขึ้นหากมี
หลังจากแก้ไขข้อขัดแย้งเสร็จ ให้ทำการ commit การเปลี่ยนแปลง

17. ทำการเปลี่ยนแปลงเพิ่มเติมในโค้ดของ branch "main" หากต้องการ
แก้ไขไฟล์ต่าง ๆ
echo "นี่คือการเปลี่ยนแปลงเพิ่มเติมใน branch main." >> main_changes.txt

18. เพิ่มการเปลี่ยนแปลงเพิ่มเติมในโค้ดไปยัง staging area
git add .

19. ทำการ commit การเปลี่ยนแปลง
git commit -m "การเปลี่ยนแปลงบางส่วนใน branch main"

20. ทำการ push การเปลี่ยนแปลงใน branch "main" ไปยัง remote repository
git push origin main

Workshop 2

Click here to GITHUB REPO

ให้แก้โจทย์ที่กำหนด โดยแบ่งข้อละ 1 คน และ ทำการอัพขึ้นบน github

  1. Clone git repo 
    git clone urlrepo
  2. เข้า Directory ของ git repo
    cd [path]
  3. เปิดไฟล์ README.md ด้วย Vscode
    code .

  4. สร้าง Branch ชื่อ ว่า feature
    git branch fueture
  5. แก้ไขไฟล์ README.md
  6. git add .
  7. git commit -am "ใส่ชื่อตัวเอง"
  8. push ไฟล์ที่แก้ไขขึ้น github
    git push -u origin fueture

  9. กลับไปที่ branch main 
    git checkout main

  10. ทำการ merge 
    git merge fueture

  11. git add .
  12. git commit -m 'Last commit'
  13. git push -u origin main