Skip to content

Commit da81583

Browse files
committed
🚚 update: Add git stash command options
1 parent ad5e08e commit da81583

File tree

3 files changed

+23
-2
lines changed

3 files changed

+23
-2
lines changed

.github/workflows/build-deploy-website.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
container: "docker://asciidoctor/docker-asciidoctor:latest"
2525
steps:
2626
- name: Checkout code
27-
uses: actions/checkout@v3
27+
uses: actions/checkout@v4
2828

2929
- name: Build site using Asciidoctor
3030
run: |

src/content/commands/git_stash.adoc

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,27 @@
88

99
Saving changes temporarily.
1010

11+
NOTE: All link:#_added_files[tracked] and link:#_untracked_filed[untracked] local changes are stashed, i.e., all changes in the link:#_working_tree[working tree] are stashed.
12+
1113
https://www.git-tower.com/learn/git/ebook/en/command-line/branching-merging/stashing[Commands and explanation^]
1214

15+
==== Options/Flags
16+
17+
===== No option
18+
19+
* Saves the current working tree to the stash.
20+
21+
===== list
22+
23+
* Lists all the available stashes
24+
25+
===== show -p stash@{0}
26+
27+
* Shows the changes in a particular stash entry.
28+
* Find the stash number using the `git stash list` command.
29+
30+
===== pop
31+
32+
* Apply the changes of the latest stash entry.
33+
1334
'''

src/service-worker.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const cacheName = "v48";
1+
const cacheName = "v49";
22
const cacheAssets = [
33
"./",
44
"./index.html",

0 commit comments

Comments
 (0)