You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@nutch.apache.org by Apache Wiki <wi...@apache.org> on 2017/05/01 21:45:48 UTC

[Nutch Wiki] Update of "UsingGit" by ChrisMattmann

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Nutch Wiki" for change notification.

The "UsingGit" page has been changed by ChrisMattmann:
https://wiki.apache.org/nutch/UsingGit?action=diff&rev1=3&rev2=4

Comment:
- update to gitbox

   1. `svn status` (ensure no local changes)
   2. `mv .svn .svn.old` (or simply `find . -name "*.svn" -exec rm -rf {} \;`)
   3. `git init`
-  4. `git remote add origin https://git-wip-us.apache.org/repos/asf/nutch.git`
+  4. `git remote add origin https://gitbox.apache.org/repos/asf/nutch.git`
   5. `git checkout -b merge-branch`
   6. `git fetch --all`
   7. `git reset --hard origin/master`
@@ -25, +25 @@

  To check out a copy of Nutch, perform the following command:
  
  {{{
- git clone https://git-wip-us.apache.org/repos/asf/nutch.git master
+ git clone https://gitbox.apache.org/repos/asf/nutch.git master
  }}}
  
  This will check out the trunk (master) copy of the code.