From 010a4c77859dd01f4b47c1a9613b4fcde3a04efd Mon Sep 17 00:00:00 2001 From: Marco Berzborn <marco.berzborn@akustik.rwth-aachen.de> Date: Wed, 13 Sep 2017 16:23:46 +0200 Subject: [PATCH] removed verbose info from ita_git_read_config --- kernel/StandardRoutines/ita_git_read_config.m | 5 ----- 1 file changed, 5 deletions(-) diff --git a/kernel/StandardRoutines/ita_git_read_config.m b/kernel/StandardRoutines/ita_git_read_config.m index 89cdebc2..0789e40a 100644 --- a/kernel/StandardRoutines/ita_git_read_config.m +++ b/kernel/StandardRoutines/ita_git_read_config.m @@ -26,13 +26,9 @@ workingDir = pwd; cd(ita_toolbox_path) % This will only work if git bash bindings are installed. -% TODO: check TortoiseGit command line version [userName,userMail,statusName,statusMail] = read_config_with_bindings(); if statusName ~= 0 || statusMail ~= 0 - % Do not use ita_verbose_info here, as it will result in an infinite - % loop because of an ita_preferences call - disp('Either git was not found on your machine or your username and e-mail are not set in the configuration. You can set them manually using ita_preferences.'); userName = []; userMail = []; end @@ -53,7 +49,6 @@ if statusName ~= 0 end if statusMail ~= 0 [statusMail,userMail] = system('git config --global user.email'); - disp('I took your E-Mail from the global git configuration'); end end -- GitLab