Repo for Intro to R for Biologists Bootcamp
View the Project on GitHub bioinformatics-core-shared-training/Using_Git_with_R
Follow trainer who will live-code an example.
git config –global user.name “Your name”.
git config –global user.email “Your e-mail adddress”.
The name and e-mail must be the ones you used when creating your Github account. Rstudio uses this information to connect you to Github..
From the shell you can always check these settings with this command:
git config –global -l.

.
.
.
.
Enter a comment in the commit box and press ‘commit’ button. This could be done for several files but we are only doing one so now having committed we move onto the step that pushs the committed files to our GH repo.
.
.
Try adding and deleting lines and using the commit/push combo to confirm that Rstudios git interface will display and log changes in a similar fashion to the web one we used in Exercise 1.–End of Exercise 2–