Преглед на файлове

Don't try to fetch remotes without configured refspecs.

tags/v0.3
Ben Kurtovic преди 9 години
родител
ревизия
a9e2a1fe8d
променени са 1 файла, в които са добавени 6 реда и са изтрити 0 реда
  1. +6
    -0
      gitup/update.py

+ 6
- 0
gitup/update.py Целия файл

@@ -94,6 +94,12 @@ def _fetch_remotes(remotes):

for remote in remotes:
print(INDENT2, "Fetching", BOLD + remote.name, end="")

config_attr = "remote.{0}.fetch".format(remote.name)
if not _read_config(remote.repo, config_attr):
print(":", YELLOW + "skipped:", "no configured refspec.")
continue

try:
results = remote.fetch(progress=_ProgressMonitor())
except exc.GitCommandError as err:


Зареждане…
Отказ
Запис