SVN Commands Cheat Sheet

Here is a cli commands cheat sheet for SVN command, you can use this as a quick reminder for basic commands with a brief description for each of the commands.

What is SVN command?

Add some data here

        ---
tags: [ vcs ]
---
# To Update working copy from repository:
svn update "/path"

# To Show changed files in working copy:
svn status

# To Show what changed in local file:
svn diff "/path/filename"

# To Add files or folders:
svn add "path/item"

# To Revert local uncommited changes:
svn revert "/path/file"

# To Commit changes to repo:
svn commit -m "message" "/path"

# To Show help for 'svn diff':
svn help diff
    

Check out the SVN command documentation .


You can also check our MegaSh cheatsheet tool, that has 150+ searchable linux cheat sheets in one page, so you never forget a command as you work again

Check Also

Best AI tools list