Thursday, January 17, 2019

Reverting a patch

First create patch using
// here I consider last patch applied:
# git format-patch -1
Then  revert a patch using below command.
# git apply -R  your_patch_file.patch
make further changes in the files directly and start commiting,pushing the changes.

No comments:

Post a Comment