You can submit your work from your fork of Github P4Tuning.org
Set up your Github repo
- Make sure you have Git installed. You can download and install Git for Windows here and Git for Mac here. If you’re on a Mac, chances are you might already have git installed. You can check by opening up a terminal and typing
which git
. - Go to Github.com and sign up for an account.
Fork P4Tuning.org project
- Go to Github.com
- Select
button in the upper-right to fork project to your account.
Clone your fork P4Tuning.org project in local
- In your GitHub repository, copy the https clone url
- On your local machine, ppen a terminal, browse to a convenient location for your project, and type
git clone https://github.com/xxxx/p4tuning.org.git
, replacing thexxxx
with your repository account - Test your local version :
bundle exe jekyll build
and, if ok,bundle exe jekyll serve
- See result with browser (go to local url indicated)
Edit/Add file
- Make your change
add
and/orcommit
your change- push to your GitHub rep :
git push origin master
- go to GitHub repo and verify your change
- if ok, you can do a pull request (from github site) to submit your work to the community (reference repo)