diff --git a/clearml_agent/commands/config.py b/clearml_agent/commands/config.py index 9355128..bca0eaf 100644 --- a/clearml_agent/commands/config.py +++ b/clearml_agent/commands/config.py @@ -122,7 +122,7 @@ def main(): " Bitbucket: https://support.atlassian.com/bitbucket-cloud/docs/app-passwords/\n" " GitLab: https://docs.gitlab.com/ee/user/profile/personal_access_tokens.html\n" ) - print('Enter git password token for user \'{}\': '.format(git_user), end='') + print('Enter git personal token for user \'{}\': '.format(git_user), end='') git_pass = input() print('Git repository cloning will be using user={} token={}'.format(git_user, git_pass)) else: diff --git a/clearml_agent/interface/worker.py b/clearml_agent/interface/worker.py index 47ee0c2..dbc0444 100644 --- a/clearml_agent/interface/worker.py +++ b/clearml_agent/interface/worker.py @@ -22,7 +22,7 @@ WORKER_ARGS = { 'help': 'git username for repository access', }, '--git-pass': { - 'help': 'git password for repository access', + 'help': 'git password (personal access tokens) for repository access', }, '--log-level': { 'help': 'SDK log level',