Apply svn patch and then undo the same patch via command line
Apply svn patch patch -p0 -i path_of_patch_file.patch Example: patch -p0 -i Undo svn patch svn patch –reverse-diff path_of_patch_file.patch Example: svn patch –reverse-diff
Apply svn patch patch -p0 -i path_of_patch_file.patch Example: patch -p0 -i Undo svn patch svn patch –reverse-diff path_of_patch_file.patch Example: svn patch –reverse-diff
Video for who doesn’t like to read ;). And if you like the video then subscribe my channel and share this with others who has the same issue. Recently I came across this below error when I tried to run…

Yesterday I updated my macOS to latest Catalina version. After updating it GIT was not working. That always happens to me :-). I was getting following error. xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools), missing xcrun at: /Library/Developer/CommandLineTools/usr/bin/xcrun Many…

I was trying to install gulp on my mac. But I was getting following errors while running command sudo npm install gulp -g Unhandled rejection Error: EISDIR: illegal operation on a directory, open ” Unhandled rejection Error: EISDIR: illegal operation…
First, check the files by the following command to confirm your searched files: find FOLDER/PATH -name ‘*.log’ Now run the following command to delete: find FOLDER/PATH -name ‘*.log’ -delete This command will delete the file containing “.log” extension.