Cheatography
https://cheatography.com
Usefull commands
svn ci -m "commit message" |
Commit |
svn up |
Update working copy from svn server |
svn st |
Show changes from last commit |
svn info |
View svn working copy info |
svn up -r500 |
Get 500 revicion |
|
|
Branching
svn cp -m "new branch" ^/trunk ^/branches/new |
Create "new" branch |
svn sw ^/branches/new |
Switch to branch "new" |
svn ci -m "commit message" |
Commit to branch |
svn merge ^/trunk |
Merge trunk changes to branch "new" |
svn ci -m "trunk merge to new branch" |
Commit merge |
svn sw ^/trunk |
Switch to trunk |
svn merge --reintegrate ^/branches/new |
Merge branch changes to trunk |
|
|
|
Created By
Metadata
Favourited By
Comments
No comments yet. Add yours below!
Add a Comment
Related Cheat Sheets