Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create Getting Started #2122

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions Getting Started
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
Empty Epsilon
How to get started and making your first commit step by step:

1. There are a few options for IDE, pick the one you are most comfortable in. VS code is a popular choice.
2. Fork the code. This allows you to freely add/edit the contents without effecting the actual code:
3. After forking, you will then clone your forked repository
4. For VS code, make sure to install the GitHub extension.
5. Back on GitHub, on your forked repository page, click the "Code" button and copy the HTTPS or SSH URL.
6. On VS code, open a new window and select clone git repo:
7. From there, paste the link you copied from github and clone it. It will take a few moments.
8. Add your code or edit the files.
9. Once you are done editing, you can commit and push your files back to your privated forked code on git.
10. Once you are comfortable with your code and want to get your code reviewed to add to the open source project, make a pull request
11. Once you have selected a new pull request, select compare and pull request button next to the branch you pushed your changes to.
12. Now review changes and give a title and description for your pull request, and ensure that the changes look as expected.
13. Lastly Click on the create pull request button to submit your changes for review by the project maintainers.