Contributing to Open Source Software
Slides
Collaborating Intro
Evolottery
R & Rstudio
Set up Git for R and Rstudio
Fork a repository
Clone a repository
Make a change to the repo
Commit changes locally to git
Push changes to GitHub
Create Pull Request
Synch with upstream repository
GitKraken
Forking
Cloning
Making Changes
Committing Changes
Pushing Changes
Making a Pull Request
Merging a Pull Request
Inspecting Merged Changes
Another Way to Collaborate
Pulling Upstream Changes
Git Command Line
Forking
Cloning
Making Changes
Committing Changes
Pushing Changes
Making a Pull Request
Merging a Pull Request
Inspecting Merged Changes
Another Way to Collaborate
Pulling Upstream Changes
Setup
Github
R & Rstudio
Gitkraken
Git
More
GitHub repo
Snippets
Credits
CC-BY Licence
Clear History
Built with
from
Grav
and
Hugo
Edit this page
Hacktoberfest Sheffield 2020
> Snippets
Snippets
## Setup chunk ````markdown ```{r setup, include=FALSE} knitr::opts_chunk$set( echo = TRUE, warning = TRUE, message = TRUE, comment = "" ) ``` ````