-
-
Notifications
You must be signed in to change notification settings - Fork 655
Open
Labels
Description
Is your feature request related to a problem? Please describe.
I had a need to restore a file to it's previous version.
Describe the solution you'd like
In gitui, I went to the Files tab, found the file I wanted to restore, and viewed the history. From here I can view the the previous versions of the file. It would be useful if I could restore to whatever version I have highlighted.
Describe alternatives you've considered
What I did was use my mouse to copy the commit-id from the history view in gitui. Then run the following command git restore <file-name> -s <commit-id>~
. Of note is the tilde at the end, this restored to one commit before the given commit-id. That fit my use case best.
Additional context
Thanks for your consideration!