From bf709f18c6de0f2eb0ac1200b27c0920c2b055be Mon Sep 17 00:00:00 2001 From: Abdelilah El Aissaoui Date: Wed, 8 May 2024 18:10:23 +0200 Subject: [PATCH] Removed first stash being shown in the graph --- .../kotlin/com/jetpackduba/gitnuro/git/log/GetLogUseCase.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/kotlin/com/jetpackduba/gitnuro/git/log/GetLogUseCase.kt b/src/main/kotlin/com/jetpackduba/gitnuro/git/log/GetLogUseCase.kt index ee334f8..d51c43e 100644 --- a/src/main/kotlin/com/jetpackduba/gitnuro/git/log/GetLogUseCase.kt +++ b/src/main/kotlin/com/jetpackduba/gitnuro/git/log/GetLogUseCase.kt @@ -33,7 +33,7 @@ class GetLogUseCase @Inject constructor() { walk.markStartAllRefs(Constants.R_HEADS) walk.markStartAllRefs(Constants.R_REMOTES) walk.markStartAllRefs(Constants.R_TAGS) - walk.markStartAllRefs(Constants.R_STASH) +// walk.markStartAllRefs(Constants.R_STASH) if (hasUncommittedChanges) commitList.addUncommittedChangesGraphCommit(logList.first())