Answers for "git pull everything from development branch to feature 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

Code answers related to "git pull everything from development branch to feature branch"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language