how to get latest update from developmetn branch from feature branch then push it 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