We will be raising issues ourseleves for so that you can contribute directly to it. But as this is an Open Source project and we would be happy to see contributors who report bugs, errors and file feature requests by submitting pull requests as well. This project adheres to the Contributor Covenant code of conduct. By participating, you are expected to uphold this code style.
Go to the repository on GitHub at https://github.com/VBSquad/Scrabbling-Java-With-CF
Click the “Fork” button at the top right.
You’ll now have your copy of the original Scrabbling-Java-With-CF repository in your GitHub account.
Open a terminal/shell.
$ git clone https://github.com/username/Scrabbling-Java-With-CF
where 'username' is your username.
You’ll now have a local copy of your version of the original Scrabbling-Java-With-CF repository.
$ cd Scrabbling-Java-With-CF
$ git remote add upstream https://github.com/VBSquad/Scrabbling-Java-With-CF
$ git remote -v
Make/Add a java file by implementing that concept and then
git add
and git commit
those changes
git push
them back to GitHub. These will go to your version of the repository.
Go to your version of the repository on GitHub.
Click the “New pull request” button at the top.
Note that Scrabbling-Java-With-CF’s repository will be on the left and your repository will be on the right.
Click the green button “Create pull request”. Give a succinct and informative title, in the comment field give a short explanation of the changes and click the green button “Create pull request” again.
Before you make further changes to the repository, you should check that your version is up to date relative to Scrabbling-Java-With-CF’s version.
Go into the directory for the project and type:
$ git checkout origin master
$ git pull upstream master --rebase
This will pull down and merge all of the changes that have been made in the original Scrabbling-Java-With-CF repository.
Now push them back to your Github repository.
$ git push origin master