Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

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
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #git #pull #development #branch #feature #branch
ADD COMMENT
Topic
Name
6+9 =