Compare commits

..

No commits in common. "79ab269fe6363c8034c1cbef2804ac7f7ce128ce" and "a53f343cdbe8e369fafb4b39f8bda0128c6b54ed" have entirely different histories.

2
gis
View file

@ -49,7 +49,7 @@ function execute_git_command_on_list {
# Execute 'fetch' or 'pull' # Execute 'fetch' or 'pull'
if [ "$1" == "fetch" ]; then if [ "$1" == "fetch" ]; then
output=$(git fetch --prune --all &> >(sed "s/^/${text_bold}${text_blue}${repository_name}${text_reset} /")) output=$(git fetch --prune --all --porcelain &> >(sed "s/^/${text_bold}${text_blue}${repository_name}${text_reset} /"))
[ "$?" != 0 ] && echo -e "${text_bold}${text_blue}${repository_name}${text_reset} ${text_bold}${text_red}ERROR${text_reset} while fetching\n${output}" [ "$?" != 0 ] && echo -e "${text_bold}${text_blue}${repository_name}${text_reset} ${text_bold}${text_red}ERROR${text_reset} while fetching\n${output}"
elif [ "$1" == "pull" ]; then elif [ "$1" == "pull" ]; then
git pull --recurse-submodules &> >(sed "s/^/${text_bold}${text_magenta}${repository_name}${text_reset} /") git pull --recurse-submodules &> >(sed "s/^/${text_bold}${text_magenta}${repository_name}${text_reset} /")