Horje
merge master to dev branch Code Example
merge master to dev branch
1. //pull the latest changes of current development branch if any        
git pull (current development branch)

2. //switch to master branch
git checkout master 

3. //pull all the changes if any
git pull

4. //Now merge development into master    
git merge development

5. //push the master branch
git push origin master
git merge master into branch
# 2. merge feature branch to origin/master branch
$ git checkout master
$ git pull origin/master

$ git merge feature
$ git push origin/master
merge master to a branch
git checkout feature1
git merge master




Shell

Related
refusing to merge unrelated git Code Example refusing to merge unrelated git Code Example
create gitignore files windows Code Example create gitignore files windows Code Example
chown specific user linux Code Example chown specific user linux Code Example
git remove last pushed commit Code Example git remove last pushed commit Code Example
chmod a+x Code Example chmod a+x Code Example

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