🔥 Git เป็น Version Control ที่ใช้จัดเก็บและควบคุมการเปลี่ยนแปลงที่เกิดขึ้นกับไฟล์ชนิดต่างๆ เช่น Text file, Source Code เป็นต้น
.
✍️ ซึ่งมันจะใช้เก็บบันทึกการเปลี่ยนแปลงของ Source Code เวอร์ชันล่าสุดที่เครื่องของเรา (Local Repository) สามารถทำงานได้โดยที่ไม่ต้องใช้เน็ต หากต้องการอัปเดต หรือเปลี่ยนแปลงก็สามารถทำการ Push ขึ้นไปเก็บที่ Remote Repository ได้นั่นเอง!
.
🔎 มันมีคำสั่งอะไร แล้วแต่ละอย่างใช้ทำอะไรบ้างไปดูกันเลยจ้า
.
⭐ 1) Git clone - ใช้ดาวน์โหลด/คัดลอกโปรเจกต์จาก Remote Repository ไว้ในเครื่องของเรา
.
คำสั่ง
git clone
⭐ 2) Git branch - สร้าง ลบ และเรียกดู Branch ได้ตามต้องการ
.
คำสั่งสร้าง Branch ใหม่
git branch
.
คำสั่งลบ Branch
git branch -d
⭐ 3) Git checkout - ใช้เปลี่ยน Branch ในการทำงาน
.
คำสั่ง
git checkout
.
หรือสามารถสร้าง Branch ใหม่และเรียกใช้ทันที ด้วยคำสั่ง
git checkout -b
⭐ 4) Git status - ใช้เช็คสถานะของไฟล์ต่างๆ ในโปรเจกต์ของเรา เช่น
.
คำสั่ง
git status
.
⭐ 5) Git add - ใช้สำหรับอัปเดตเวอร์ชันใหม่ของ Code ที่ถูกแก้ไขหรือสร้างใหม่ขึ้นบน Stage
.
คำสั่ง (ระบุชื่อไฟล์ที่ต้องการ)
git add
.
คำสั่ง (ไฟล์ทั้งหมดในโฟลเดอร์)
git add -A
.
⭐ 6) Git commit - ใช้สำหรับยืนยันการเปลี่ยนแปลงของไฟล์ที่ถูก Add ขึ้นมาบน Stage และสามารถใส่ Comment สั้นๆ ได้ด้วย
.
คำสั่ง
git commit -m "commit message"
.
⭐ 7) Git push - ใช้สำหรับอัปเดต Code ที่ถูก Commit ขึ้นบน Remote Repository
git push
.
แต่ถ้าเราเขียน Code ใน Branch ใหม่ที่ยังไม่มีบน Remote Repository ให้ใช้คำสั่ง
git push --set-upstream
.
หรือ
git push -u origin
.
⭐ 8) Git pull - รับการอัปเดตจาก Remote Repository มาในเครื่องของเรา
.
คำสั่ง
git pull
.
⭐ 9) Git revert - คำสั่งยกเลิกการอัปเดตจากฝั่งเราออกจาก Remote Repository
*ต้องใช้อย่างระวังเพราะอาจจะพลาดลบบางอย่างที่ไม่ต้องการได้
.
คำสั่ง
git revert
.
⭐ 10) Git merge - ใช้สำหรับรวม Branch ที่ต้องการเข้าด้วยกัน
.
คำสั่ง
git merge
.
ครบแล้วกับ 10 คำสั่ง Git เบื้องต้นที่มือใหม่ควรรู้ หวังว่าจะเป็นประโยชน์กับเพื่อนๆ นะคะ 😍
.
borntoDev - 🦖 สร้างการเรียนรู้ที่ดีสำหรับสายไอทีในทุกวัน
「git set upstream」的推薦目錄:
- 關於git set upstream 在 BorntoDev Facebook 的最佳解答
- 關於git set upstream 在 30 天精通Git 版本控管(25):使用GitHub 遠端儲存庫- 觀念篇 的評價
- 關於git set upstream 在 Why do I need to do `--set-upstream` all the time? - Stack ... 的評價
- 關於git set upstream 在 Configuring a remote for a fork - GitHub Docs 的評價
- 關於git set upstream 在 38. What git push -u mean? Set upstream for the local branch ... 的評價
- 關於git set upstream 在 Quickly fix Git's "fatal: no upstream branch" error - Coffee Talk 的評價
- 關於git set upstream 在 Push 上傳到GitHub - 為你自己學Git | 高見龍 的評價
- 關於git set upstream 在 Chapter 23 Remotes | Happy Git and GitHub for the useR 的評價
- 關於git set upstream 在 Git远程03:分支的upstream | Learnit 的評價
- 關於git set upstream 在 Push a New Branch to github that Doesn't Exist Remotely Yet 的評價
- 關於git set upstream 在 Syncing a Fork of a GitHub Repository with Upstream - Ardalis ... 的評價
git set upstream 在 Configuring a remote for a fork - GitHub Docs 的推薦與評價
You must configure a remote that points to the upstream repository in Git to sync changes you make in a fork with the original repository. This also allows you ... ... <看更多>
git set upstream 在 30 天精通Git 版本控管(25):使用GitHub 遠端儲存庫- 觀念篇 的推薦與評價
要將本地分支建立起跟遠端儲存庫的對應關係,只要在git push 的時候加上--set-upstream 參數,即可將本地分支註冊進.git\config 設定檔,之後再用git push 就可以順利 ... ... <看更多>