mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-12-23 20:47:25 -08:00
enhance: better support for signed commits (#154)
This commit is contained in:
parent
fa3a3b2dad
commit
8ae864a14d
1 changed files with 2 additions and 2 deletions
|
@ -5,8 +5,8 @@ namespace SourceGit.Commands
|
|||
{
|
||||
public class QueryCommits : Command
|
||||
{
|
||||
private const string GPGSIG_START = "gpgsig -----BEGIN PGP SIGNATURE-----";
|
||||
private const string GPGSIG_END = " -----END PGP SIGNATURE-----";
|
||||
private const string GPGSIG_START = "gpgsig -----BEGIN ";
|
||||
private const string GPGSIG_END = " -----END ";
|
||||
|
||||
private readonly List<Models.Commit> commits = new List<Models.Commit>();
|
||||
private Models.Commit current = null;
|
||||
|
|
Loading…
Reference in a new issue