Skip to content
This repository was archived by the owner on Dec 5, 2024. It is now read-only.

Commit b2a22d8

Browse files
Merge branch 'master' into fixes/git-log-update
2 parents dbb7a95 + 449ddc8 commit b2a22d8

File tree

2 files changed

+1
-13
lines changed

2 files changed

+1
-13
lines changed

common/SolutionInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,6 @@
3131
namespace System
3232
{
3333
internal static class AssemblyVersionInformation {
34-
internal const string Version = "0.23.0";
34+
internal const string Version = "0.24.0";
3535
}
3636
}

src/GitHub.Api/Git/RepositoryManager.cs

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -209,25 +209,13 @@ public ITask RemoteAdd(string remote, string url)
209209
{
210210
var task = GitClient.RemoteAdd(remote, url);
211211
task = HookupHandlers(task, true, false);
212-
if (!platform.Environment.IsWindows)
213-
{
214-
task.Then(_ => {
215-
UpdateConfigData(true);
216-
});
217-
}
218212
return task;
219213
}
220214

221215
public ITask RemoteRemove(string remote)
222216
{
223217
var task = GitClient.RemoteRemove(remote);
224218
task = HookupHandlers(task, true, false);
225-
if (!platform.Environment.IsWindows)
226-
{
227-
task.Then(_ => {
228-
UpdateConfigData(true);
229-
});
230-
}
231219
return task;
232220
}
233221

0 commit comments

Comments
 (0)