@@ -473,7 +473,7 @@ Tracking and contributing to the trunk of a Subversion-managed project:
473
473
474
474
------------------------------------------------------------------------
475
475
# Clone a repo (like git clone):
476
- git svn clone http://svn.foo.org /project/trunk
476
+ git svn clone http://svn.example.com /project/trunk
477
477
# Enter the newly cloned directory:
478
478
cd trunk
479
479
# You should be on master branch, double-check with git-branch
@@ -495,7 +495,7 @@ Tracking and contributing to an entire Subversion-managed project
495
495
496
496
------------------------------------------------------------------------
497
497
# Clone a repo (like git clone):
498
- git svn clone http://svn.foo.org /project -T trunk -b branches -t tags
498
+ git svn clone http://svn.example.com /project -T trunk -b branches -t tags
499
499
# View all branches and tags you have cloned:
500
500
git branch -r
501
501
# Reset your master to trunk (or any other branch, replacing 'trunk'
@@ -514,7 +514,7 @@ have each person clone that repository with 'git-clone':
514
514
515
515
------------------------------------------------------------------------
516
516
# Do the initial import on a server
517
- ssh server "cd /pub && git svn clone http://svn.foo.org /project
517
+ ssh server "cd /pub && git svn clone http://svn.example.com /project
518
518
# Clone locally - make sure the refs/remotes/ space matches the server
519
519
mkdir project
520
520
cd project
@@ -523,7 +523,7 @@ have each person clone that repository with 'git-clone':
523
523
git config --add remote.origin.fetch '+refs/remotes/*:refs/remotes/*'
524
524
git fetch
525
525
# Initialize git-svn locally (be sure to use the same URL and -T/-b/-t options as were used on server)
526
- git svn init http://svn.foo.org /project
526
+ git svn init http://svn.example.com /project
527
527
# Pull the latest changes from Subversion
528
528
git svn rebase
529
529
------------------------------------------------------------------------
0 commit comments