|
Size: 297
Comment:
|
Size: 768
Comment:
|
| Deletions are marked like this. | Additions are marked like this. |
| Line 14: | Line 14: |
| svn protected/* themes/* commit -m 'message' | |
| Line 17: | Line 18: |
| /usr/bin/svnaddunversioned.sh: | |
| Line 18: | Line 20: |
| #!/bin/sh | |
| Line 20: | Line 23: |
* chmod 755 /usr/bin/svnaddunversioned.sh == Branches == http://svnbook.red-bean.com/en/1.7/svn.branchmerge.using.html {{{ svn copy http://svn.example.com/repos/calc/trunk http://svn.example.com/repos/calc/branches/my-calc-branch -m "Creating a private branch of /calc/trunk." svn checkout http://svn.example.com/repos/calc/branches/my-calc-branch my-calc-branch }}} |
Subversion
Subversion is an open source version control system
https://subversion.apache.org/
Update
svn update
Commit
svn commit -m 'message' svn protected/* themes/* commit -m 'message'
Add unversioned files
/usr/bin/svnaddunversioned.sh:
svn status | grep ? | awk '//{print $2}' | xargs -i svn add {}- chmod 755 /usr/bin/svnaddunversioned.sh
Branches
http://svnbook.red-bean.com/en/1.7/svn.branchmerge.using.html
svn copy http://svn.example.com/repos/calc/trunk http://svn.example.com/repos/calc/branches/my-calc-branch -m "Creating a private branch of /calc/trunk." svn checkout http://svn.example.com/repos/calc/branches/my-calc-branch my-calc-branch
