소스 검색

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

sujith 1 개월 전
부모
커밋
ce36b61760
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  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());