Você não pode selecionar mais de 25 tópicos
Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
|
123456789101112131415 |
- #!/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
-
- }
|