I searched and found many link which talks about un-doing your uncommited changes with respect to specific file:
- git reset
- git reset --hard
- git checkout -- file
- git checkout branchname^ filename
but I want to undo changes for all the files I have modifies under a specific folder.
assume I have a folder like this clients/libs/slickgrid
& slickgrid
internally contains multiple folder which contains multiple files.
I want to undo all modified files under slickgrid folder. What options I have over here?