Method: GGSM::Submodule#tip_contact_author

Defined in:
lib/ggsm/util/submodule.rb

#tip_contact_authorObject



164
165
166
167
168
# File 'lib/ggsm/util/submodule.rb', line 164

def tip_contact_author
  latest_commit = `git log test -1 --oneline | grep ''`.split(' ')[0]
  author = `git show #{latest_commit}|grep "Author:"`.chomp
  puts "请联系#{author} 推送远程缺失的commit".red
end