Skip to content

Commit 2601de2

Browse files
author
Jordan McCullough
committed
Merge pull request #264 from github/svn-vocabulary-table-tune-up
Subversion Cheat Sheet vocabulary tune up
2 parents 14454d8 + 570dfe7 commit 2601de2

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

downloads/subversion-migration.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,21 +12,21 @@ When migrating from Subversion to Git, there's a vocabulary and command set to l
1212

1313
| Git command | SVN | SVN equivalent | Git Behavior |
1414
|---|---|---|---|
15-
| `status` || status | Report the state of working tree |
16-
| `add` | | add | Required for each path before making a commit |
17-
| `commit` | | commit | Store prepared changes in local revision history |
15+
| `status` || | Report the state of working tree |
16+
| `add` | | | Required for each path before making a commit |
17+
| `commit` | | | Store prepared changes in local revision history |
1818
| `rm` || `rm`, `delete` | Prepare paths for deletion in next commit |
1919
| `mv` || `move` | Prepare relocated content for next commit |
20-
| `branch` | | | Create local context for commits |
21-
| `checkout` | | | Switch branches, or rewrite working tree from commit |
20+
| `branch` | | | Create local context for commits |
21+
| `checkout` | | | Switch branches, or rewrite working tree from commit |
2222
| `merge` || | Join branch histories and changes to working tree |
23-
| `log` | | | No network required |
23+
| `log` | | | No network required |
2424
| `clone` || `checkout` | Acquire the entire history of a project locally for the first time |
2525
| `push` || `commit` | Upload commit history to GitHub/centralized Git host |
2626
| `pull` || | Download and integrate GitHub repository history with local one |
2727
| `fetch` || | Download GitHub repository history with no other action |
2828

29-
**Key:** ✓ yes, ✗ no, — partial
29+
**Key:** ✓ yes, ✗ no
3030

3131
## Leveraging Git's support of SVN
3232
During a VCS change, there may be a need to begin using Git locally while the hosted repositories remain under Subversion control. The `git svn` command and sub-commends provide the ability to interact with Subversion's repositories while using all the benefits of Git on the command line or with graphical clients.

0 commit comments

Comments
 (0)