mirror of
https://github.com/trimstray/the-book-of-secret-knowledge
synced 2025-01-27 19:58:15 +01:00
1fabfb5204
- signed-off-by: trimstray <trimstray@gmail.com>
15 lines
208 B
Bash
15 lines
208 B
Bash
#!/usr/bin/env bash
|
|
|
|
function _ana_git_pull() {
|
|
|
|
local _arg=("$@")
|
|
|
|
for _i in "${_arg[@]}" ; do
|
|
|
|
printf "%s" "$_i"
|
|
|
|
git pull origin "$_i" && git fetch --all && git fetch --prune --tags
|
|
|
|
done
|
|
|
|
}
|