Method: TestIds.initialize_git

Defined in:
lib/test_ids.rb

.initialize_gitObject



174
175
176
177
178
179
180
181
182
# File 'lib/test_ids.rb', line 174

def initialize_git
  @git_initialized ||= begin
    if repo
      @git = Git.new(local: git_database_dir, remote: repo)
      git.get_lock if publish?
    end
    true
  end
end