diff options
-rw-r--r-- | CHANGELOG | 1 | ||||
-rw-r--r-- | lib/gitlab_shell.rb | 2 |
2 files changed, 3 insertions, 0 deletions
@@ -1,5 +1,6 @@ v2.6.6 (unreleased) - Do not clean LANG environment variable for the git hooks when working through the SSH-protocol + - Add git-lfs-authenticate command to white list (this command is used by git-lfs for SSO authentication through SSH-protocol) v2.6.5 - Handle broken symlinks in create-hooks diff --git a/lib/gitlab_shell.rb b/lib/gitlab_shell.rb index 356c8ee..cae501a 100644 --- a/lib/gitlab_shell.rb +++ b/lib/gitlab_shell.rb @@ -111,6 +111,8 @@ class GitlabShell $logger.info "gitlab-shell: executing git-annex command <#{parsed_args.join(' ')}> for #{log_username}." exec_cmd(*parsed_args) + elsif @git_cmd == 'git-lfs-authenticate' + exec_cmd(@origin_cmd) else $logger.info "gitlab-shell: executing git command <#{@git_cmd} #{repo_full_path}> for #{log_username}." exec_cmd(@git_cmd, repo_full_path) |