Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
svn, import
  • Loading branch information
schacon committed Oct 13, 2014
commit 38a302ddf5d92de47ffcaa6e086f2c30422c5ae1
1 change: 1 addition & 0 deletions book/09-git-and-other-scms/sections/client-svn.asc
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
[[_git_svn]]
==== Git and Subversion

(((Subversion)))(((Interoperation with other VCSs, Subversion)))
Expand Down
1 change: 1 addition & 0 deletions book/09-git-and-other-scms/sections/import-custom.asc
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
[[_custom_importer]]
==== A Custom Importer

(((git commands, fast-import)))
Expand Down
14 changes: 12 additions & 2 deletions book/C-git-commands/1-git-commands.asc
Original file line number Diff line number Diff line change
Expand Up @@ -409,13 +409,23 @@ We demonstrate how to use `git request-pull` to generate a pull message in <<_pu

=== External Systems

Git comes with a few commands to integrate with other version control systems.

==== svn

The `git svn` command is used to communicate with the Subversion version control system as a client. This means you can use Git to checkout from and commit to a Subversion server.

This command is covered in depth in <<_git_svn>>.

==== fast-import

For other version control systems or importing from nearly any format, you can use `git fast-import` to quickly map the other format to something Git can easily record.

This command is coverd in depth in <<_custom_importer>>.

=== Administration


==== clean

==== gc
Expand All @@ -426,8 +436,6 @@ We demonstrate how to use `git request-pull` to generate a pull message in <<_pu

==== filter-branch

==== instaweb

==== archive


Expand All @@ -437,6 +445,8 @@ We demonstrate how to use `git request-pull` to generate a pull message in <<_pu

==== update-server-info

==== instaweb


=== Plumbing Commands

Expand Down