We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ee6a52 commit ed6b3e2Copy full SHA for ed6b3e2
.travis.yml
@@ -10,4 +10,4 @@ rvm:
10
- rbx-18mode
11
- rbx-19mode
12
- ree
13
- - ruby-head
+# - ruby-head
lib/git/lib.rb
@@ -431,10 +431,10 @@ def clean(opts = {})
431
432
def revert(commitish, opts = {})
433
# Forcing --no-edit as default since it's not an interactive session.
434
- opts = {:'no-edit' => true}.merge(opts)
+ opts = {:no_edit => true}.merge(opts)
435
436
arr_opts = []
437
- arr_opts << '--no-edit' if opts[:'no-edit']
+ arr_opts << '--no-edit' if opts[:no_edit]
438
arr_opts << commitish
439
440
command('revert', arr_opts)
0 commit comments