diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-08-26 12:58:06 +0300 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-08-26 12:58:06 +0300 |
commit | 1269f3ae942df0556c695ddee0a84497075e8113 (patch) | |
tree | 6ae6c860c31afb07e7e3e24b876a2a41116a3b66 | |
parent | 0bd0f069943cec360b226153f5b0eadd2fe9bdea (diff) | |
parent | fbaf8d8c12dcb9d820d250b9f9589318dbc36616 (diff) | |
download | gitlab-shell-1269f3ae942df0556c695ddee0a84497075e8113.tar.gz |
Merge branch 'master' of github.com:gitlabhq/gitlab-shell
-rw-r--r-- | CHANGELOG | 2 | ||||
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | lib/gitlab_projects.rb | 2 | ||||
-rw-r--r-- | lib/gitlab_update.rb | 2 |
4 files changed, 4 insertions, 4 deletions
@@ -29,6 +29,6 @@ v1.1.0 v1.0.4 - requires gitlab c9ca15e - - dont use post-receive file any more. Make all updates in update + - don't use post-receive file any more. Make all updates in update - fixed issue with invalid GL_USER - use GL_ID instead of GL_USER @@ -72,7 +72,7 @@ Remove key ./bin/gitlab-keys rm-key key-23 "ssh-rsa AAAAx321..." -Remoev all keys from authorized_keys file +Remove all keys from authorized_keys file ./bin/gitlab-keys clear diff --git a/lib/gitlab_projects.rb b/lib/gitlab_projects.rb index 242384b..bea5686 100644 --- a/lib/gitlab_projects.rb +++ b/lib/gitlab_projects.rb @@ -88,7 +88,7 @@ class GitlabProjects end # Import project via git clone --bare - # URL must be publicly clonable + # URL must be publicly cloneable def import_project @source = ARGV.shift $logger.info "Importing project #{@project_name} from <#{@source}> to <#{full_path}>." diff --git a/lib/gitlab_update.rb b/lib/gitlab_update.rb index c61d571..40ddc6e 100644 --- a/lib/gitlab_update.rb +++ b/lib/gitlab_update.rb @@ -27,7 +27,7 @@ class GitlabUpdate ENV['GL_ID'] = nil # If its push over ssh - # we need to check user persmission per branch first + # we need to check user permission per branch first if ssh? if api.allowed?('git-receive-pack', @repo_name, @key_id, @branch_name) update_redis |