Git ใหม่สร้างแบรนซ์สั่ง

รหัสตัวอย่าง

77
0

git สร้างใหม่แบรนซ์

// Example for creating a new branch named myNewBranch
git checkout -b myNewBranch

// First Push
git push --set-upstream origin myNewBranch
44
0

git คำสั่งที่จะสร้างแบรนซ์

//Create a New Branch
git checkout -b [name_of_your_new_branch]
//First Push
git push --set-upstream origin [name_of_your_new_branch]
6
0

git สร้างใหม่แบรนซ์จากปัจจุบัน

git checkout -b topic/newbranch
4
0

git สาขาใหม่

$ git checkout -b [your_branch_name]
# Switched to a new branch [your_branch_name]

# This is shorthand for:
$ git branch [your_branch_name]
$ git checkout [your_branch_name]
3
0

คำสั่งที่จะสร้างใหม่แบรนซ์อยู่ใน git

$ git checkout -b <branch-name>
1
0

สร้างใหม่แบรนซ์ git จากอาจารย์

git checkout -b new-branch-name

ในภาษาอื่นๆ

หน้านี้อยู่ในภาษาอื่นๆ

Русский
..................................................................................................................
English
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................