mirror of
https://github.com/sourcegit-scm/sourcegit
synced 2025-05-22 04:34:59 +00:00
enhance: add a button to clear git.http.proxy configuration
This commit is contained in:
parent
20b45a1cf4
commit
a3a3a0e4e9
2 changed files with 15 additions and 3 deletions
|
@ -37,8 +37,8 @@ namespace SourceGit.ViewModels
|
|||
|
||||
public string HttpProxy
|
||||
{
|
||||
get;
|
||||
set;
|
||||
get => _httpProxy;
|
||||
set => SetProperty(ref _httpProxy, value);
|
||||
}
|
||||
|
||||
public RepositoryConfigure(Repository repo)
|
||||
|
@ -60,6 +60,11 @@ namespace SourceGit.ViewModels
|
|||
HttpProxy = proxy;
|
||||
}
|
||||
|
||||
public void ClearHttpProxy()
|
||||
{
|
||||
HttpProxy = string.Empty;
|
||||
}
|
||||
|
||||
public void Save()
|
||||
{
|
||||
SetIfChanged("user.name", UserName);
|
||||
|
@ -90,5 +95,6 @@ namespace SourceGit.ViewModels
|
|||
|
||||
private readonly Repository _repo = null;
|
||||
private readonly Dictionary<string, string> _cached = null;
|
||||
private string _httpProxy;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue