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

// First Push
git push --set-upstream origin myNewBranch
git command to create a branch
//Create a New Branch
git checkout -b [name_of_your_new_branch]
//First Push
git push --set-upstream origin [name_of_your_new_branch]
create new branch git from master
git checkout -b new-branch-name
git new branch from current
branchShell/Bash By Scriper on Sep 2 2020 Comment
// Example for creating a new branch named myNewBranch
git checkout -b myNewBranch

// First Push
git push --set-upstream origin myNewBranch
create new branch git
git checkout -b branchName
git push --set-upstream origin branchName
create a new git branch
# create and switch to the new branch 
git checkout -b <Name_of_your_branch>
# example 
git checkout -b testBranch1
# if you check your current branch it will show you testBranch1




Shell

Related
ubuntu dock setting Code Example ubuntu dock setting Code Example
git apply exclude file Code Example git apply exclude file Code Example
win kex kali linux Code Example win kex kali linux Code Example
unzip command ubuntu Code Example unzip command ubuntu Code Example
awk split each character Code Example awk split each character Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
7