Recovering Deleted Git Stashes
A dropped Git stash remains recoverable until garbage collection removes it. Learn how to find it as a dangling commit and restore its changes.
A Git stash is implemented internally as a commit. Consequently, dropping a stash does not delete the underlying object immediately; it persists in the repository as a “dangling” commit until garbage collection runs. This makes recovery possible in most cases.
List Dangling Commits
Use the following command to identify dangling commits in the repository:
git fsck | awk '/dangling commit/ {print $3}' >> commit_list.txtThe output will look something like this:
dangling commit bfebf68feeebf07a86d7e3e4da77962de67c14eedangling commit 86f4aec78bd51c80b0fd2d5d83963a2259dc72b4dangling commit 48fd9f8f97a577bc8a87b133f6e1dd789a692bd0dangling commit 64ff8c33fb878afb8bf5c99c1b8d8fdfaa1b1f3cdangling commit bdff88e13803e6c7737691aa1fb6f1e038321966Review Candidate Commits
To review the details of each candidate commit, run the following script:
#!/bin/bash
while read linedo git show $linedone < ./commit_list.txtThis will display summaries of the dangling commits:
commit bfebf68feeebf07a86d7e3e4da77962de67c14eeMerge: b046240 5ee731aAuthor: Takahiro Iwasa <[email protected]>Date: Fri Feb 12 22:01:47 2016 +0900
On develop: 0212Restore Selected Commits
Review the commit summaries and use the date, time, and commit message to identify the commits to be restored.
The identified commits can then be restored using git cherry-pick:
git cherry-pick -n -m1 <YOUR_COMMIT_ID>Conclusion
To recover a dropped stash, list the dangling commits, review each candidate, and cherry-pick the correct one. The git fsck | awk '/dangling commit/ {print $3}' command produces a short list of commit IDs because dropping a stash removes its ref but does not immediately delete the underlying objects.
Use git show to inspect the author, date, and message of each candidate. After identifying the correct commit, git cherry-pick -n -m1 reapplies its changes to the working tree without creating a new commit.
This method works only until garbage collection removes the unreachable objects, so recovery is not guaranteed.
Related posts
Improving Cross-Team Communication with C4 Diagrams
Learn the characteristics of the C4 model, how it differs from UML and infrastructure diagrams, and how to communicate architecture at the right level for each role.
Sign in with Slack Using Cognito User Pools and OIDC
Federating Cognito user pools with Slack over OIDC and wiring "Sign in with Slack" into a Next.js app with Amplify.
Deploying FastAPI on AWS Lambda with Lambda Web Adapter
Containerizing a FastAPI backend and deploying it to a single Lambda function with Lambda Web Adapter and AWS CDK.
API Gateway WebSocket: Implementing a Mock Integration
Building an API Gateway WebSocket API entirely with mock integrations, returning canned responses with no backend Lambda involved.
Uploading to S3 Through CloudFront Signed URLs
CloudFront signed URLs let you upload to S3 through a custom domain—useful when direct S3 pre-signed URLs are not an option.
