Browse Source

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

sujith 1 month ago
parent
commit
ce36b61760
1 changed files with 1 additions and 0 deletions
  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());