Class: Braid::Operations::Git
- Inherits:
-
Proxy
- Object
- Proxy
- Braid::Operations::Git
show all
- Defined in:
- lib/braid/operations.rb
Instance Method Summary
collapse
-
#apply(diff, *args) ⇒ Object
-
#branch ⇒ Object
-
#checkout(treeish) ⇒ Object
-
#clone(*args) ⇒ Object
-
#commit(message, *args) ⇒ Object
-
#diff_tree(src_tree, dst_tree, prefix = nil) ⇒ Object
-
#ensure_clean! ⇒ Object
-
#fetch(remote = nil, *args) ⇒ Object
-
#head ⇒ Object
-
#merge_base(target, source) ⇒ Object
Returns the base commit or nil.
-
#merge_ours(opt) ⇒ Object
-
#merge_recursive(base_hash, local_hash, remote_hash) ⇒ Object
-
#merge_subtree(opt) ⇒ Object
-
#read_tree_prefix(treeish, prefix) ⇒ Object
-
#remote_add(remote, path, branch) ⇒ Object
-
#remote_rm(remote) ⇒ Object
-
#remote_url(remote) ⇒ Object
Checks git and svn remotes.
-
#reset_hard(target) ⇒ Object
-
#rev_parse(opt) ⇒ Object
-
#rm_r(path) ⇒ Object
-
#status_clean? ⇒ Boolean
-
#tree_hash(path, treeish = "HEAD") ⇒ Object
Methods inherited from Proxy
command, #require_version, #require_version!, #version
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
in the class Braid::Operations::Proxy
Instance Method Details
#apply(diff, *args) ⇒ Object
276
277
278
279
280
281
282
283
284
285
286
|
# File 'lib/braid/operations.rb', line 276
def apply(diff, *args)
err = nil
status = Open4.popen4("git apply --index --whitespace=nowarn #{args.join(' ')} -") do |pid, stdin, stdout, stderr|
stdin.puts(diff)
stdin.close
err = stderr.read
end.exitstatus
raise ShellExecutionError, err unless status == 0
true
end
|
#branch ⇒ Object
271
272
273
274
|
# File 'lib/braid/operations.rb', line 271
def branch
status, out, err = exec!("git branch | grep '*'")
out[2..-1]
end
|
#checkout(treeish) ⇒ Object
168
169
170
171
|
# File 'lib/braid/operations.rb', line 168
def checkout(treeish)
invoke(:checkout, treeish)
true
end
|
#clone(*args) ⇒ Object
288
289
290
291
|
# File 'lib/braid/operations.rb', line 288
def clone(*args)
invoke(:clone, *args)
end
|
#commit(message, *args) ⇒ Object
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
|
# File 'lib/braid/operations.rb', line 141
def commit(message, *args)
cmd = "git commit --no-verify"
if message message_file = Tempfile.new("braid_commit")
message_file.print("Braid: #{message}")
message_file.flush
cmd << " -F #{message_file.path}"
end
cmd << " #{args.join(' ')}" unless args.empty?
status, out, err = exec(cmd)
message_file.unlink if message_file
if status == 0
true
elsif out.match(/nothing.* to commit/)
false
else
raise ShellExecutionError, err
end
end
|
#diff_tree(src_tree, dst_tree, prefix = nil) ⇒ Object
251
252
253
254
255
256
|
# File 'lib/braid/operations.rb', line 251
def diff_tree(src_tree, dst_tree, prefix = nil)
cmd = "git diff-tree -p --binary #{src_tree} #{dst_tree}"
cmd << " --src-prefix=a/#{prefix}/ --dst-prefix=b/#{prefix}/" if prefix
status, out, err = exec!(cmd)
out
end
|
#ensure_clean! ⇒ Object
263
264
265
|
# File 'lib/braid/operations.rb', line 263
def ensure_clean!
status_clean? || raise(LocalChangesPresent)
end
|
#fetch(remote = nil, *args) ⇒ Object
162
163
164
165
166
|
# File 'lib/braid/operations.rb', line 162
def fetch(remote = nil, *args)
args.unshift "-n #{remote}" if remote
sh("git fetch #{args.join(' ')} 2>&1 >/dev/null")
end
|
#head ⇒ Object
267
268
269
|
# File 'lib/braid/operations.rb', line 267
def head
rev_parse("HEAD")
end
|
#merge_base(target, source) ⇒ Object
Returns the base commit or nil.
174
175
176
177
178
|
# File 'lib/braid/operations.rb', line 174
def merge_base(target, source)
invoke(:merge_base, target, source)
rescue ShellExecutionError
nil
end
|
#merge_ours(opt) ⇒ Object
215
216
217
218
|
# File 'lib/braid/operations.rb', line 215
def merge_ours(opt)
invoke(:merge, "-s ours --no-commit", opt)
true
end
|
#merge_recursive(base_hash, local_hash, remote_hash) ⇒ Object
229
230
231
232
233
234
|
# File 'lib/braid/operations.rb', line 229
def merge_recursive(base_hash, local_hash, remote_hash)
invoke(:merge_recursive, base_hash, "-- #{local_hash} #{remote_hash}")
true
rescue ShellExecutionError
raise MergeError
end
|
#merge_subtree(opt) ⇒ Object
221
222
223
224
225
226
227
|
# File 'lib/braid/operations.rb', line 221
def merge_subtree(opt)
invoke(:merge, "-s subtree --no-commit --no-ff", opt)
true
rescue ShellExecutionError
raise MergeError
end
|
#read_tree_prefix(treeish, prefix) ⇒ Object
236
237
238
239
|
# File 'lib/braid/operations.rb', line 236
def read_tree_prefix(treeish, prefix)
invoke(:read_tree, "--prefix=#{prefix}/ -u", treeish)
true
end
|
#remote_add(remote, path, branch) ⇒ Object
187
188
189
190
|
# File 'lib/braid/operations.rb', line 187
def remote_add(remote, path, branch)
invoke(:remote, "add", "-t #{branch} -m #{branch}", remote, path)
true
end
|
#remote_rm(remote) ⇒ Object
192
193
194
195
|
# File 'lib/braid/operations.rb', line 192
def remote_rm(remote)
invoke(:remote, "rm", remote)
true
end
|
#remote_url(remote) ⇒ Object
Checks git and svn remotes.
198
199
200
201
202
203
204
205
206
207
|
# File 'lib/braid/operations.rb', line 198
def remote_url(remote)
key = "remote.#{remote}.url"
begin
invoke(:config, key)
rescue ShellExecutionError
invoke(:config, "svn-#{key}")
end
rescue ShellExecutionError
nil
end
|
#reset_hard(target) ⇒ Object
209
210
211
212
|
# File 'lib/braid/operations.rb', line 209
def reset_hard(target)
invoke(:reset, "--hard", target)
true
end
|
#rm_r(path) ⇒ Object
241
242
243
244
|
# File 'lib/braid/operations.rb', line 241
def rm_r(path)
invoke(:rm, "-r", path)
true
end
|
#status_clean? ⇒ Boolean
258
259
260
261
|
# File 'lib/braid/operations.rb', line 258
def status_clean?
status, out, err = exec("git status")
!out.split("\n").grep(/nothing to commit/).empty?
end
|
#tree_hash(path, treeish = "HEAD") ⇒ Object
246
247
248
249
|
# File 'lib/braid/operations.rb', line 246
def tree_hash(path, treeish = "HEAD")
out = invoke(:ls_tree, treeish, "-d", path)
out.split[2]
end
|