Changes between Version 8 and Version 9 of faq/gitification
- Timestamp:
- May 26, 2012, 1:54:26 AM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
faq/gitification
v8 v9 66 66 }}} 67 67 68 Now we install a module in it. As an example we chose the [http://drupal.org/project/i18n i18n] module. At the Drupal project page we click on the green "Version Control" tab and chose "Version to work from: 6.x-1.x". There we get the URL w e need to add the project as a remote.68 Now we install a module in it. As an example we chose the [http://drupal.org/project/i18n i18n] module. At the Drupal project page we click on the green "Version Control" tab and chose "Version to work from: 6.x-1.x". There we get the URL which we need to add the repository as a remote repository. The parameter -f triggers an instant fetch: 69 69 {{{ 70 git remote add i18n-6.x-1.x http://git.drupal.org/project/i18n.git 6.x-1.x 71 git fetch 70 git remote add -f i18n-6.x-1.x http://git.drupal.org/project/i18n.git 6.x-1.x 72 71 }}} 73 72