How to Recover a Dropped Git Stash: Complete Recovery Guide

|
| By Manoj Thakur

Accidentally ran git stash drop and thought everything was gone? Let’s go beyond commands and understand what actually happens internally  Theoretical Understanding (How Git Stores Stash) A stash is not just a temporary stack entry Git stores stash as a

How to insert file names in a text file from command prompt

| By Webner

For Windows user: 1. Open folder that contains files in console 2. type dir /b > D:test.txt (it will copy the result in test.txt file) For Linux user: 1. Open folder that contains files in console 2. type ls > /home/user/test.txt (it will copy