how to get code from develop branch to feature branch in git code example
Example: 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
#!/bin/bash
git checkout develop
git pull
git checkout feature/$1
git merge develop
git push