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

एक शाखा बनाने के लिए गिट कमांड

//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 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 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
..................................................................................................................