Manual GitLab: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 40: | Line 40: | ||
git push origin master | git push origin master | ||
</source> | </source> | ||
== See also == | |||
[[Bioinformatics_protocols_ABG_Chairgroup | Bioinformatics tips, tricks, workflows at ABGC]] | |||
== External links == | |||
[http://en.wikipedia.org/wiki/Git_(software) Wikipedia entry on Git] |
Revision as of 21:20, 26 March 2015
Manual GitLab: Create projects and add files
Signing up
If you haven't done so already, first sign up at GitLab@WUR:
https://git.wageningenur.nl
<source lang='bash'>
- This shows an example, step by step, to create a project and add files into that project.
- Configuration:
- 1. Create a folder in your machine:
/home/juanma/Git_Stuff
- 2. configuration step 1: Copy into that folder the commands from the git-web: https://git.wageningenur.nl/ # and then ABGC_Genomics/
cd /home/juanma/Git_Stuff git config --global user.name "Herrero Medrano, Juan" git config --global user.email "juan.herreromedrano@wur.nl"
- 3. configuration step 2:
cd /home/juanma/Git_Stuff ssh-keygen -t rsa cd /home/juanma/.ssh/ cat id_rsa.pub
- Copy the code and go to the git-web: Profile settings -> SSH Keys. Paste the code and add key.
- Go back to the terminal:
git clone git@git.wageningenur.nl:ABGC_Genomics/Turkey_Association.git
- Once I have made this connection, my project will appear as a folder in /home/juanma/Git_Stuff
- Add files:
- Add scripts to the project "Turkey_Association" :
cd /home/juanma/Git_Stuff/Turkey_Association cp myscript.sh /home/juanma/Git_Stuff/Turkey_Association git add myscript.sh git commit -m "myfirst_commit" git push origin master </source>
See also
Bioinformatics tips, tricks, workflows at ABGC