Answers for "pull dev to current branch"

1

git pull everything from development branch to feature branch

#!/bin/bash
git checkout develop
git pull
git checkout feature/$1
git merge develop 
git push
Posted by: Guest on June-03-2020
1

pull from dev branch to master

(on branch development)$ git merge master
(resolve any merge conflicts if there are any)
git checkout master
git merge development (there won't be any conflicts now)
Posted by: Guest on April-23-2021

Code answers related to "pull dev to current branch"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language