Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

git murge branch with master

// Start a new feature
git checkout -b new-feature master
// Edit some files
git add <file>
git commit -m "Start a feature"
// Edit some files
git add <file>
git commit -m "Finish a feature"
// Merge in the new-feature branch
git checkout master
git merge new-feature
git branch -d new-feature
Source by www.atlassian.com #
 
PREVIOUS NEXT
Tagged: #git #murge #branch #master
ADD COMMENT
Topic
Name
1+3 =