0
0
Gitdevops~10 mins

git stash list to view stashes - Interactive Code Practice

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the command to view all saved stashes.

Git
git [1] list
Drag options to blanks, or click blank then click option'
Acommit
Bbranch
Clog
Dstash
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'git commit list' instead of 'git stash list'.
Using 'git branch list' which shows branches, not stashes.
2fill in blank
medium

Complete the command to show stash entries with their names.

Git
git stash [1]
Drag options to blanks, or click blank then click option'
Alist
Bapply
Cshow
Dpop
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'git stash show' which shows only one stash's details.
Using 'git stash apply' which applies a stash instead of listing.
3fill in blank
hard

Fix the error in the command to list stashes.

Git
git stash [1]
Drag options to blanks, or click blank then click option'
Aapply
Bpop
Clist
Dshow
Attempts:
3 left
💡 Hint
Common Mistakes
Typing 'git stash list list' which is invalid.
Using 'git stash pop list' which is incorrect.
4fill in blank
hard

Fill both blanks to create a command that lists stashes with their names and indexes.

Git
git [1] [2]
Drag options to blanks, or click blank then click option'
Astash
Blist
C--stat
Dshow
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'git show list' which is invalid.
Using 'git stash show' which shows only one stash.
5fill in blank
hard

Fill all three blanks to create a command that lists stashes with detailed stats.

Git
git [1] [2] [3]
Drag options to blanks, or click blank then click option'
Astash
Blist
C--stat
D--patch
Attempts:
3 left
💡 Hint
Common Mistakes
Using '--patch' which shows patch details, not a list.
Omitting '--stat' which shows less detail.