Hi@akhtar,
Git Stash temporarily save changes you've made to your working copy, so you can work on something else, and then come back and re-apply them later on. You can use the below command to save a file in Git Stash.
$ git stash save file2.txt
Saved working directory and index state On master: file2.txt