UNPKG
gitgud
Version:
latest (2.2.1)
2.2.1
2.2.0
2.1.0
2.0.0
0.0.1-security
A CLI git tool
github.com/GitGud-org/gitgud
GitGud-org/gitgud
gitgud
/
actions
/
undoStash.js
10 lines
(8 loc)
•
190 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
const
{ execSync } =
require
(
'child_process'
)
const
React
=
require
(
'react'
)
const
popStash
= (
) => {
let
undoStash =
execSync
(
'git stash pop'
) }
module
.
exports
= popStash