scm: git: add "--no-decorate" option in "git log".
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5334 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
44214ed1aa
commit
00277a2a0a
|
@ -143,7 +143,7 @@ module Redmine
|
||||||
|
|
||||||
def lastrev(path, rev)
|
def lastrev(path, rev)
|
||||||
return nil if path.nil?
|
return nil if path.nil?
|
||||||
cmd_args = %w|log --no-color --encoding=UTF-8 --date=iso --pretty=fuller --no-merges -n 1|
|
cmd_args = %w|log --no-decorate --no-color --encoding=UTF-8 --date=iso --pretty=fuller --no-merges -n 1|
|
||||||
cmd_args << rev if rev
|
cmd_args << rev if rev
|
||||||
cmd_args << "--" << path unless path.empty?
|
cmd_args << "--" << path unless path.empty?
|
||||||
lines = []
|
lines = []
|
||||||
|
@ -171,7 +171,7 @@ module Redmine
|
||||||
|
|
||||||
def revisions(path, identifier_from, identifier_to, options={})
|
def revisions(path, identifier_from, identifier_to, options={})
|
||||||
revisions = Revisions.new
|
revisions = Revisions.new
|
||||||
cmd_args = %w|log --no-color --encoding=UTF-8 --raw --date=iso --pretty=fuller|
|
cmd_args = %w|log --no-decorate --no-color --encoding=UTF-8 --raw --date=iso --pretty=fuller|
|
||||||
cmd_args << "--reverse" if options[:reverse]
|
cmd_args << "--reverse" if options[:reverse]
|
||||||
cmd_args << "--all" if options[:all]
|
cmd_args << "--all" if options[:all]
|
||||||
cmd_args << "-n" << "#{options[:limit].to_i}" if options[:limit]
|
cmd_args << "-n" << "#{options[:limit].to_i}" if options[:limit]
|
||||||
|
|
Loading…
Reference in New Issue