This is a set of memory games for learning for children.
There is an Android app including the game. You can Download the App.
It is pure HTML/CSS/JavaScript. Deployment via GitHub Pages at http://memory.quelltext.eu
In the folowing replace text like THIS_TEXT
with something meaningful.
If you would like to contribute to the project, you can do the following:
- Fork the project.
This creates a copy of the project at
github.com/YOUR_USERNAME/memory.quelltext.eu
. - Install git.
- Clone the project.
git clone https://github.com/YOUR_USERNAME/memory.quelltext.eu.git
- Change into the repository.
cd memory.quelltext.eu
- In the project, add the original repository as source as this allows getting the latest changes.
git remote add upstream https://github.com/niccokunzmann/memory.quelltext.eu
Now, you are set and you can change the source code and give the changes to others.
If you would like to contribute, you can check out the documentation to get some ideas and hints.
- Checkout a new branch for your changes.
git checkout -b BRANCH_NAME
- Do this for all you have in mind:
- Modify a file.
- See the changes
git status
- Add the changes
git add PATH_TO_FILE_FROM_GIT_STATUS
- See the added changes
git status
- Create a new version with the changes
git commit -m"DESCRIPTION OF CHANGE"
- Push the changes to GitHub
git push -u origin BRANCH_NAME
or if you did that alreadygit push
. - If the original repository was modified during your work, you can update your branch.
git pull upstream BRANCH_NAME
- As soon as possible, create a pull request for other to see that you are working on something.
- We will discuss everything in the pull requests or the issues.