public static List<User> getGitCollaboratorsFromRepository(Repository gitRepo, OutLog out) throws Exception {
List<User> users = new ArrayList<User>();
try {
out.printLog("Baixando Collaborators...\n");
users.addAll(new CollaboratorService(AuthServices.getGitHubClient()).getCollaborators(gitRepo));
out.printLog(users.size() + " Collaborators baixados!");
} catch (Exception ex) {
ex.printStackTrace();
out.printLog("Erro: " + ex.toString());
}