コード例 #1
0
ファイル: stack.py プロジェクト: snits/stgit
 def sign(msg):
     return add_sign_line(msg, sign_str,
                          committer_name or git.committer().name,
                          committer_email or git.committer().email)
コード例 #2
0
ファイル: stack.py プロジェクト: snits/stgit
 def set_commemail(self, email):
     self._set_field('commemail', email or git.committer().email)
コード例 #3
0
ファイル: stack.py プロジェクト: snits/stgit
 def set_commname(self, name):
     self._set_field('commname', name or git.committer().name)
コード例 #4
0
 def sign(msg):
     return add_sign_line(msg, sign_str,
                          committer_name or git.committer().name,
                          committer_email or git.committer().email)
コード例 #5
0
 def set_commemail(self, email):
     self._set_field('commemail', email or git.committer().email)
コード例 #6
0
 def set_commname(self, name):
     self._set_field('commname', name or git.committer().name)