Changes between Initial Version and Version 1 of ExtractSandbox


Ignore:
Timestamp:
Dec 13, 2012, 4:18:32 PM (10 years ago)
Author:
Beman Dawes
Comment:

Initial commit

Legend:

Unmodified
Added
Removed
Modified
  • ExtractSandbox

    v1 v1  
     1= Moving Sandbox Libraries to GitHub =
     2
     3The Boost Sandbox is no longer needed. A proposed Boost library will be hosted publically on the developer's [https://github.com] account instead.
     4
     5If you have a proposed library in the sandbox, you may want to move it to !GitHub. Here is the procedure I used to move the **endian** sandbox library to !GitHub.
     6
     7* Create a empty repository named "endian" in my !GitHub account via the usual web interface.
     8
     9* Run the following from the command line in a temporary directory.
     10
     11{{{
     12git svn clone http://svn.boost.org/svn/boost/sandbox/endian
     13cd endian
     14git push --mirror git@github.com:Beman/endian.git
     15}}}
     16
     17* The {{{endian}}} local repository created in the previous steps **must not be used** for actual development because it contains hidden Subversion bridge metadata that interferes with normal Git operations. It can be deleted now or later. Then clone the !GitHub repository in the parent directory where it should live permanently.
     18
     19{{{
     20cd permanent-parent-directory
     21git clone git@github.com:Beman/endian.git
     22}}}
     23
     24
     25