CodeHint
SVN (8 items)
SVN-Commanline-Tutorial-Session-1-SVN-Commands | Edit |
SVN Documentation | Edit |
How to accept 'theirs-conflict' to resolve tree conflict: Local add, incoming add upon merge | Edit |
svn switch repo --ignore-ancestry
Switch to another repository
Edit
svn status
Get repository status
Edit
svn info
Get repository info
Edit
svn commit -m "message"
Commit to remote repository with specific message
Edit
The 4 States or (will commit and update change anything?)
1 - Locally unchanged and updated svn commit: NO svn update: NO 2 - Locally unchanged and outdated svn commit: NO svn update: YES 3 - Locally changed and updated svn commit: YES svn update: NO 4 - Locally changed and outdated svn commit: YES svn update: YES</performatted>Edit
svn checkout repo .
Clones remote repository into local With . = checkout only files Without . = checkout folder with the files insideEdit
svn diff repo1 repo2 --summarize
Show all diffs between directories. With summarize options shows only the name of the changed file
Edit
svn switch --relocate oldurl newurl
Svn switch relocating urls
Edit