group.add_argument("-g","--group",action="store_true",help="Clone repositories from a group (with group_id) or forks of a project (with project_id) (default behavior).")
group.add_argument("-f","--forks",action="store_true",help="Clone forks of a project (with project_id).")
parser.add_argument(
"token",metavar="TOKEN",help="Create a token here: https://gitedu.hesge.ch/profile/personal_access_tokens")
parser.add_argument(
"group_id",metavar="GROUP_ID",help="The groupid (int) of the projects.")
"id",metavar="ID",help="The group_id (int) of the projects or the project_id (int) of the forks.")
parser.add_argument(
"directory",metavar="DIRECTORY",help="Local directory where clone all repositories.")