Skip to content

Latest commit

 

History

History
25 lines (15 loc) · 431 Bytes

git-merge.md

File metadata and controls

25 lines (15 loc) · 431 Bytes

GIT MERGE

Merging changes from feature_branch to develop

  1. Get latest from develop and merge to feature_branch
git checkout develop

git pull

git checkout feature_branch

git merge --no-ff origin develop

Note : To be safe from conflict with develop(GOOD PRACTICE), we will resolve in feature_branch

  1. Merge feature_branch to develop
git checkout develop

git merge --no-ff origin feature_branch