Method: Xcodeci::GitUtils#get_commit_lists

Defined in:
lib/xcodeci/gitutils.rb

#get_commit_listsObject



36
37
38
39
40
# File 'lib/xcodeci/gitutils.rb', line 36

def get_commit_lists      
  last_commit = %x(git log  -10 --date-order --pretty=format:"%h %ce").split(/\n/)
  # a single line shoud be in this format  "e2d4a86 ignaziocgmail.com"
  last_commit
end