String invalidMsg = null;
HttpURLConnection con = null;
try {
URIish gitUrl = getRepositoryRoot();
GitURIScheme uriSch = GitURIScheme.valueOf(gitUrl.getScheme());
if (uriSch == FILE) {
File f = new File(gitUrl.getPath());
if(!f.exists() || !f.canRead()){
invalidMsg = getMessage("MSG_Progress_Clone_CannotAccess_Err"); //NOI18N