Skip to content

Instantly share code, notes, and snippets.

@lil5
Created November 27, 2020 07:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lil5/1d23b633a419a95f18f69a58309c0e3c to your computer and use it in GitHub Desktop.
Save lil5/1d23b633a419a95f18f69a58309c0e3c to your computer and use it in GitHub Desktop.
Keep up to date with your backend
#!/bin/bash
dirs=("api" "api2")
for d in "${dirs[@]}"
do
pushd $d
git pull
popd
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment