Today, I checkout some changes in git, and created a pull request. Based on the suggestions (code review), I needed to revert some files i.e. *.Designer.cs back to their previous stats (undo the changes).
You can:
- checkout a new branch, re-do the changes without those files, and recommit with a new pull request.
- do it in the same branch by reverting all changes to a revision e.g. git revert revision; redo the changes and re-commit without having to raise a new pull request
- just revert those files
With the third method, you can do the following command on windows:
@for /f "usebackq delims==" %f in
(`find . -type f -name "*.Designer.cs" -print`) do (
git checkout revision %f
)
On Linux, you can do similarly:
@for f in $(find . -type f -name "*.Designer.cs" -print)
do
git checkout revision $f
done
–EOF (The Ultimate Computing & Technology Blog) —
193 wordsLast Post: C/C++ Coding Exercise - Nim Game
Next Post: The True Exception Handlers in PHP and Javascript
Nice post.Useful tips regarding revert some files to a revision.
Thanks
How To Make Computer Faster