Changes between Version 8 and Version 9 of github_molgenis
- Timestamp:
- 2012-06-18T13:55:17+02:00 (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
github_molgenis
v8 v9 7 7 8 8 * @commandline try retrieving projects by CLONING (Fork a repository online (molgenis/molgenis)) : 9 * create folders, cd there and try (Clone it to your HDD) . After forking a molgenis 9 * create folders, cd there and try (Clone it to your HDD) . After forking a molgenis 10 10 * repos: git clone git@github.com:<yourname>/molgenis.git 11 11 * git clone [https://github.com/molgenis/molgenis.git https://github.com/<username>/molgenis.git] … … 16 16 * [https://github.com/molgenis/molgenis.git git remote -v] 17 17 * [https://github.com/molgenis/molgenis.git Pull from the remote] 18 * 18 * [https://github.com/molgenis/molgenis.git git pull molgenis master] 19 19 20 20 == update project = pull project == 21 * Go into the directory molgenis 21 * Go into the directory molgenis git pull --all 22 22 23 23 == "commit" = push a change : == 24 * Edit a file vi 24 * Edit a file vi DEVELOPERS 25 25 * git add filename 26 26 * git status 27 27 * git diff 28 * git commit -a (Commit the code locally, ) or git commit –m 28 * git commit -a (Commit the code locally, ) or git commit –m ‘Changed a file’ 29 29 * git status 30 * git push origin ( Push the local commits to your repository)30 * git push origin ( If your done update your ‘fork’ git push, Push the local commits to your repository) 31 31 * git push origin master (Add an upstream remote) 32 33 ‘Changed a file’ If your done update your ‘fork’ git push