mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-12-25 21:07:20 -08:00
Fix spelling errors in configuration keys
This commit is contained in:
parent
8ed068e2dd
commit
e54f17d13b
1 changed files with 1 additions and 1 deletions
|
@ -44,7 +44,7 @@ namespace SourceGit.ViewModels
|
||||||
if (_cached.ContainsKey("user.email")) UserEmail = _cached["user.email"];
|
if (_cached.ContainsKey("user.email")) UserEmail = _cached["user.email"];
|
||||||
if (_cached.ContainsKey("commit.gpgsign")) GPGSigningEnabled = _cached["commit.gpgsign"] == "true";
|
if (_cached.ContainsKey("commit.gpgsign")) GPGSigningEnabled = _cached["commit.gpgsign"] == "true";
|
||||||
if (_cached.ContainsKey("user.signingkey")) GPGUserSigningKey = _cached["user.signingkey"];
|
if (_cached.ContainsKey("user.signingkey")) GPGUserSigningKey = _cached["user.signingkey"];
|
||||||
if (_cached.ContainsKey("http.proxy")) HttpProxy = _cached["user.signingkey"];
|
if (_cached.ContainsKey("http.proxy")) HttpProxy = _cached["http.proxy"];
|
||||||
|
|
||||||
View = new Views.RepositoryConfigure() { DataContext = this };
|
View = new Views.RepositoryConfigure() { DataContext = this };
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue