mirror of
https://github.com/sourcegit-scm/sourcegit
synced 2025-05-22 12:45:00 +00:00
fix: tag.gpgsign setting not updated
This commit is contained in:
parent
9ae6df4597
commit
86226d5484
3 changed files with 28 additions and 32 deletions
|
@ -14,7 +14,10 @@ namespace SourceGit.Commands
|
|||
|
||||
public Dictionary<string, string> ListAll()
|
||||
{
|
||||
Args = "config -l";
|
||||
if (string.IsNullOrEmpty(WorkingDirectory))
|
||||
Args = "config --global -l";
|
||||
else
|
||||
Args = "config -l";
|
||||
|
||||
var output = ReadToEnd();
|
||||
var rs = new Dictionary<string, string>();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue