-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgit.rb
31 lines (25 loc) · 899 Bytes
/
git.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# frozen_string_literal: true
gemfile do
source "https://rubygems.org"
gem "rugged"
end
CONFIG_FILE_PATH = "#{ENV["HOME"]}/.gitconfig.commander"
# @private
# Overrides Rugged::Repository#global_config so that we can use a custom config
# file for all git-commander related configurations
class RuggedRepositoryWithCustomConfig < SimpleDelegator
attr_reader :global_config
def initialize(repository)
@global_config = Rugged::Config.new(CONFIG_FILE_PATH)
super repository
end
end
unless File.exist?(CONFIG_FILE_PATH)
system.run "touch #{CONFIG_FILE_PATH}"
system.say "Created #{CONFIG_FILE_PATH} for git-commander specific configurations."
system.run "git config --global --add include.path \"#{CONFIG_FILE_PATH}\""
system.say "Added #{CONFIG_FILE_PATH} to include.path in $HOME/.gitconfig"
end
RuggedRepositoryWithCustomConfig.new(
Rugged::Repository.new(Dir.pwd)
)