how to sync up a feature branch with up 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