fixed github directory match pattern The regexp "[a-z0-9A-Z_.\-/]" is strict , not match dir with space(issue #293) or other special character. change it to "[^/]" matching more directories in github repo URL. fixed #293