Browse Source

Sujith :) ->
1. Added drop functionality when popping the stashed change

sujith 1 tháng trước cách đây
mục cha
commit
ce36b61760
1 tập tin đã thay đổi với 1 bổ sung0 xóa
  1. 1 0
      Assets/Arbitrator/Editor/Services/GitExecutors.cs

+ 1 - 0
Assets/Arbitrator/Editor/Services/GitExecutors.cs

@@ -349,6 +349,7 @@ namespace Terra.Arbitrator.Services
                 if (hasStashed)
                 {
                     await GitCommand.RunAsync(log, new[] { "stash", "pop" }, 0, 1, 141);
+                    await GitCommand.RunAsync(log, new[] { "stash", "drop" }, 0, 141);
                 }
                 
                 resolve(log.ToString());