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
ให้แก้โจทย์ที่กำหนด โดยแบ่งข้อละ 1 คน และ ทำการอัพขึ้นบน github
- Clone git repo
git clone urlrepo
- เข้า Directory ของ git repo
cd [path]
- เปิดไฟล์ README.md ด้วย Vscode
code .
- สร้าง Branch ชื่อ ว่า feature
git branch fueture
- แก้ไขไฟล์ README.md
-
git add .
-
git commit -am "ใส่ชื่อตัวเอง"
- push ไฟล์ที่แก้ไขขึ้น github
git push -u origin fueture
- กลับไปที่ branch main
git checkout main
- ทำการ merge
git merge fueture
-
git add .
-
git commit -m 'Last commit'
-
git push -u origin main