diff options
author | Patrick Bajao <ebajao@gitlab.com> | 2020-08-18 06:54:30 +0000 |
---|---|---|
committer | Patrick Bajao <ebajao@gitlab.com> | 2020-08-18 06:54:30 +0000 |
commit | b972ea485ff85215049abe70e22f1db7242ee432 (patch) | |
tree | dd67dbef7c4c06e3a1ac5cf981be9ee37d355a03 /internal/command/commandargs/shell.go | |
parent | 4b1ee791a1bdc927becee37ae84f7ba226d17791 (diff) | |
parent | b8d66d7923150402f54f13d793d3051efab3a832 (diff) | |
download | gitlab-shell-b972ea485ff85215049abe70e22f1db7242ee432.tar.gz |
Merge branch 'master' into 'master'
Add support obtaining personal access tokens via SSH
See merge request gitlab-org/gitlab-shell!397
Diffstat (limited to 'internal/command/commandargs/shell.go')
-rw-r--r-- | internal/command/commandargs/shell.go | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/internal/command/commandargs/shell.go b/internal/command/commandargs/shell.go index 1fe59fb..4632cff 100644 --- a/internal/command/commandargs/shell.go +++ b/internal/command/commandargs/shell.go @@ -9,12 +9,13 @@ import ( ) const ( - Discover CommandType = "discover" - TwoFactorRecover CommandType = "2fa_recovery_codes" - LfsAuthenticate CommandType = "git-lfs-authenticate" - ReceivePack CommandType = "git-receive-pack" - UploadPack CommandType = "git-upload-pack" - UploadArchive CommandType = "git-upload-archive" + Discover CommandType = "discover" + TwoFactorRecover CommandType = "2fa_recovery_codes" + LfsAuthenticate CommandType = "git-lfs-authenticate" + ReceivePack CommandType = "git-receive-pack" + UploadPack CommandType = "git-upload-pack" + UploadArchive CommandType = "git-upload-archive" + PersonalAccessToken CommandType = "personal_access_token" GitProtocolEnv = "GIT_PROTOCOL" ) |