🔥 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 - 🦖 สร้างการเรียนรู้ที่ดีสำหรับสายไอทีในทุกวัน
同時也有10000部Youtube影片,追蹤數超過2,910的網紅コバにゃんチャンネル,也在其Youtube影片中提到,...
「git pull remote branch」的推薦目錄:
- 關於git pull remote branch 在 BorntoDev Facebook 的精選貼文
- 關於git pull remote branch 在 コバにゃんチャンネル Youtube 的最讚貼文
- 關於git pull remote branch 在 大象中醫 Youtube 的最佳貼文
- 關於git pull remote branch 在 大象中醫 Youtube 的最佳貼文
- 關於git pull remote branch 在 Git fetch remote branch - Stack Overflow 的評價
- 關於git pull remote branch 在 Getting changes from a remote repository - GitHub Docs 的評價
- 關於git pull remote branch 在 Pull 下載更新- 為你自己學Git | 高見龍 的評價
- 關於git pull remote branch 在 Git: 四種將分支與主線同步的方法 的評價
- 關於git pull remote branch 在 git pull from remote but no such ref was fetched? - Unix ... 的評價
- 關於git pull remote branch 在 Git remote examples: Interacting with Github and other ... 的評價
- 關於git pull remote branch 在 How to pull a branch that does not exist locally from github? 的評價
- 關於git pull remote branch 在 How to Pull Changes from Remote Repo to Local Repository ... 的評價
git pull remote branch 在 コバにゃんチャンネル Youtube 的最讚貼文
git pull remote branch 在 大象中醫 Youtube 的最佳貼文
git pull remote branch 在 大象中醫 Youtube 的最佳貼文
git pull remote branch 在 Getting changes from a remote repository - GitHub Docs 的推薦與評價
Use git fetch to retrieve new work done by other people. Fetching from a repository grabs all the new ... ... <看更多>
git pull remote branch 在 Pull 下載更新- 為你自己學Git | 高見龍 的推薦與評價
在「Remote branch to pull」下拉選單可選擇想要拉的遠端分支。 另外,在下方有一些選項,其中第一個「Commit merged changes immediately」這個選項,如果你知道Pull 指令 ... ... <看更多>
git pull remote branch 在 Git fetch remote branch - Stack Overflow 的推薦與評價
... <看更多>
相關內容