[DOC] correct the documentation of actions

This commit is contained in:
Edouard DUPIN 2019-05-30 13:56:55 +02:00
parent e0ec2bddae
commit e1899f89d0
6 changed files with 10 additions and 7 deletions

View File

@ -18,7 +18,7 @@ import os
def help(): def help():
return "plop" return "Ckeckout a specific branch in all repository"
def add_specific_arguments(my_args, section): def add_specific_arguments(my_args, section):
my_args.add("r", "remote", haveParam=True, desc="Name of the remote server") my_args.add("r", "remote", haveParam=True, desc="Name of the remote server")

View File

@ -18,7 +18,10 @@ import os
def help(): def help():
return "write the command you want to be executed in every repository" return "Write the command you want to be executed in every repository"
def have_unknow_argument():
return True
def execute(arguments): def execute(arguments):
cmd = "" cmd = ""

View File

@ -18,7 +18,7 @@ import os
def help(): def help():
return "commit in all repository" return "Commit in all repository"

View File

@ -18,7 +18,7 @@ import os
def help(): def help():
return "plop" return "Fecth all the repository (get all modification on the server)"
def add_specific_arguments(my_args, section): def add_specific_arguments(my_args, section):
my_args.add("r", "remote", haveParam=True, desc="Name of the remote server") my_args.add("r", "remote", haveParam=True, desc="Name of the remote server")

View File

@ -18,7 +18,7 @@ import os
def help(): def help():
return "plop" return "Get the status of all the repositories"
def add_specific_arguments(my_args, section): def add_specific_arguments(my_args, section):

View File

@ -18,11 +18,11 @@ import os
def help(): def help():
return "plop" return "Syncronize all the repository referenced"
def add_specific_arguments(my_args, section): def add_specific_arguments(my_args, section):
my_args.add("d", "download", haveParam=False, desc="Just download not download repository") my_args.add("d", "download", haveParam=False, desc="Just download the 'not download' repository")
def execute(arguments): def execute(arguments):
just_download = False just_download = False