Follow the below instructions to get up and running for this week's Ruby Coding Challenge.
- log into
github.com
using your personal GitHub account - go to the xpca project page
- click on the "Fork" button near the top of the page
- you will now have a cloned version of the
xpca
project on GitHub - go to your
https://github.com/YOUR-GITHUB-USERNAME/xpca
project page
As a one-off, clone your version of the xpca
project, and add my version as one of its remotes:
cd ~/Workarea # or any other directory where you keep your projects...
git clone [email protected]:YOUR-GITHUB-USERNAME/xpca.git
cd xpca
git remote add upstream git:https://github.com/pvdb/xpca.git
Then, going forward, you can fetch and merge the latest changes from the main xpca
project as follows:
git fetch upstream
git merge upstream/master
gem install bundler
bundle install --system
- coming soon
- coming soon