From bee45e19d7db3ab304c89f5bd142548d3a5581b9 Mon Sep 17 00:00:00 2001 From: Eric Amodio Date: Wed, 12 Dec 2018 00:47:57 -0500 Subject: [PATCH] Adds comment with more info on ^3 syntax --- src/views/nodes/stashNode.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/views/nodes/stashNode.ts b/src/views/nodes/stashNode.ts index 1b85b77..5d6632c 100644 --- a/src/views/nodes/stashNode.ts +++ b/src/views/nodes/stashNode.ts @@ -28,6 +28,7 @@ export class StashNode extends ViewRefNode { const files = (this.commit as GitStashCommit).files; // Check for any untracked files -- since git doesn't return them via `git stash list` :( + // See https://stackoverflow.com/questions/12681529/ const log = await Container.git.getLog(this.commit.repoPath, { maxCount: 1, ref: `${(this.commit as GitStashCommit).stashName}^3`