Change the wording of `revert-file` commit
See original GitHub issueCurrently the wording is Revert {fileName}
. Revert follow-file-renames.tsx
I would like it to say Revert changes made to {filename}
Issue Analytics
- State:
- Created 3 years ago
- Reactions:1
- Comments:6 (6 by maintainers)
Top Results From Across the Web
Git and GitHub: How to Revert a Single File.
Find the commit ID of the version of the file you want to revert to. Find the path to the file you want...
Read more >Git Revert File – Reverting a File to a Previous Commit
Git will replace the file with the specified committed version. Use this only if you are sure and don't want those unsaved local...
Read more >Revert changes to a file in a commit - git - Stack Overflow
8 Answers 8 · git revert -n <*commit*> ( -n revert all the changes but won't commit them) · git add <*filename*> (name...
Read more >2.4 Git Basics - Undoing Things
Right below the “Changes to be committed” text, it says use git reset HEAD <file>… to unstage. So, let's use that advice to...
Read more >Resetting, Checking Out & Reverting | Atlassian Git Tutorial
A revert is an operation that takes a specified commit and creates a new commit which inverses the specified commit. git revert can...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Should the feature be renamed to
Restore file
?I tried it out
git restore
is just agit-reset
on a file and does not commit anything