Is there a way to list all files that will be modified, added, and deleted in my local copy, so I can sanity check before commit?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It is indeed a good practice before each commit.
On Windows, you should go with TortoiseSVN.
Combined with compare tool (Beyond Compare, etc.) is your winner tool.
On Linux, you can use both
svn status(or shorthandsvn st) to see modified / deleted / added filessvn diff <file>to see changes.I use the following command to see differences in more nice form:
svn diff <file> | vim -