git pull everything from development branch to feature branch

Shell
#!/bin/bash
git checkout develop
git pull
git checkout feature/$1
git merge develop 
git push

Source

Also in Shell: