You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »

These are my personal notes on SVN.

Basic Commands


Command

Description

svn checkout <URL>Checkout repo
svn status --no-ignoreShow status of all files
svn status --no-ignore |grep ^?Show un-versioned files
svn add <folder_or_file>Add files for commit
svn revert --recursive <folder_or_file>Revert an add
svn delete <folder_or_file>Remove files
svn commitCommit changes to svn server.
svn updatePull changes from svn server
svn revert <file>Revert changes to a file

svn log

Display logs for the current folder. Do svn update first.
export GIT_SSL_NO_VERIFY=trueDisable SSL cert requirement

git svn clone <SVN_URL>

ie. git svn clone https://svn.jmehan.com/svn/test/

Clone from SVN to GIT with history
  • No labels