From 3701b6973ffd2f9935e7543106c49f0f5d8e92dc Mon Sep 17 00:00:00 2001 From: Ricardo Corrie Date: Wed, 13 Jul 2016 16:57:09 +0000 Subject: [PATCH 1/3] git-svn: add `fetch` subcommand --- pages/common/git-svn.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pages/common/git-svn.md b/pages/common/git-svn.md index 2e1a1d33d..2efc7f6cd 100644 --- a/pages/common/git-svn.md +++ b/pages/common/git-svn.md @@ -6,6 +6,10 @@ `git svn clone {{http://example.com/my_subversion_repo}} {{local_dir}}` +- Fetch new revisions from remote SVN repository: + +`git svn fetch` + - Update local clone from the upstream SVN repository: `git svn rebase` From aaa8b61bd654e2a1726186d18ce09a202f08abef Mon Sep 17 00:00:00 2001 From: Ricardo Corrie Date: Thu, 14 Jul 2016 13:54:35 +0000 Subject: [PATCH 2/3] Revision based on PR feedback --- pages/common/git-svn.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pages/common/git-svn.md b/pages/common/git-svn.md index 2efc7f6cd..01b548fea 100644 --- a/pages/common/git-svn.md +++ b/pages/common/git-svn.md @@ -6,14 +6,14 @@ `git svn clone {{http://example.com/my_subversion_repo}} {{local_dir}}` -- Fetch new revisions from remote SVN repository: - -`git svn fetch` - - Update local clone from the upstream SVN repository: `git svn rebase` +- Fetch updates from remote SVN repository without changing the GIT HEAD: + +`git svn fetch` + - Commit back to SVN repository: `git svn dcommit` From 1e9232a77dc80c6e1d7d7493fb904753017f92b8 Mon Sep 17 00:00:00 2001 From: Agniva De Sarker Date: Tue, 20 Sep 2016 11:30:14 +0530 Subject: [PATCH 3/3] git-svn: fix page comments --- pages/common/git-svn.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/common/git-svn.md b/pages/common/git-svn.md index 01b548fea..d59368120 100644 --- a/pages/common/git-svn.md +++ b/pages/common/git-svn.md @@ -6,11 +6,11 @@ `git svn clone {{http://example.com/my_subversion_repo}} {{local_dir}}` -- Update local clone from the upstream SVN repository: +- Update local clone from the remote SVN repository: `git svn rebase` -- Fetch updates from remote SVN repository without changing the GIT HEAD: +- Fetch updates from the remote SVN repository without changing the git HEAD: `git svn fetch`