blame SVN Command

How to use blame SVN (Subversion) Command in Linux / Windows?

Explanation


blame command is used to print the information of the file like author, revision and file content.

Usage:

svn blame <filename>

Example:

  • Now you can get the information about the file using below command.
    svn blame readme.txt
    Output:-----------------------------------------------
    1 svntest This is a README file.
    ---------------------------------------------------------

  • 1 - is the revision information.
    svntest - is the author information.
    This is a README file. - is the content of the file.

Result:


From the above cmd, the informations of the file 'readme.txt' are printed.

Ask Questions

Ask Question