coding/svn.md
... ...
@@ -1,14 +1,19 @@
1 1
# svn
2
+
2 3
[cheatsheet](https://www.cheatography.com/davechild/cheat-sheets/subversion/)
3 4
[cheatsheet2](https://www.abbeyworkshop.com/howto/misc/svn01/)
4 5
6
+```
5 7
svn checkout --username=dudley.burrows http://code.ward.ie/svn/support-tools/trunk support-tools
6 8
7 9
svn status
8 10
9 11
svn update /path
12
+```
10 13
11
-# only need add for new directories or files
14
+only need add for new directories or files
15
+```
12 16
svn add /path|file
13 17
14 18
svn commit -m "message" /path|file
19
+```