Join us October 28-29 in San Francisco or online for GitHub Universe, our flagship developer event uniting people, agents, and the world's code.
Register now
Improved Subversion Client Support
About a year and a half ago we announced SVN client support, which could be used for limited access to GitHub repositories from Subversion clients. Today we’re launching new, improved…
|1 minute
Share:
About a year and a half ago we announced SVN client support, which could be used for limited access to GitHub repositories from Subversion clients.
No need to use svn.github.com anymore, now your svn client can use the
same URL as your git client. Repositories can still be accessed using the old URLs at https://svn.github.com/ but
everyone should migrate as we’ll be turning off svn.github.com soon.
$ git clone https://github.com/nickh/dynashard git-ds
Cloning into git-ds...
remote: Counting objects: 135, done.
remote: Compressing objects: 100% (71/71), done.
remote: Total 135 (delta 65), reused 128 (delta 58)
Receiving objects: 100% (135/135), 31.19 KiB, done.
Resolving deltas: 100% (65/65), done.
$ svn checkout https://github.com/nickh/dynashard svn-ds
A svn-ds/branches
A svn-ds/branches/shard_names
A svn-ds/branches/shard_names/.document
A svn-ds/branches/shard_names/.gitignore
...
A svn-ds/trunk/spec/support
A svn-ds/trunk/spec/support/factories.rb
A svn-ds/trunk/spec/support/models.rb
Checked out revision 25.
$ git clone https://github.com/nickh/dynashard git-ds
Cloning into git-ds...
remote: Counting objects: 135, done.
remote: Compressing objects: 100% (71/71), done.
remote: Total 135 (delta 65), reused 128 (delta 58)
Receiving objects: 100% (135/135), 31.19 KiB, done.
Resolving deltas: 100% (65/65), done.
$ svn checkout https://github.com/nickh/dynashard svn-ds
A svn-ds/branches
A svn-ds/branches/shard_names
A svn-ds/branches/shard_names/.document
A svn-ds/branches/shard_names/.gitignore
...
A svn-ds/trunk/spec/support
A svn-ds/trunk/spec/support/factories.rb
A svn-ds/trunk/spec/support/models.rb
Checked out revision 25.
$ svn co -N https://github.com/nickh/dynashard svn-ds
Checked out revision 25.
$ svn up -N branches
A branches
Updated to revision 25.
$ svn up trunk
A trunk
A trunk/.document
A trunk/.gitignore
...
A trunk/spec/support
A trunk/spec/support/factories.rb
A trunk/spec/support/models.rb
Updated to revision 25.