Thank you for considering and taking the time to contribute!💖 This is an experimental project to push newbies and help them take their first step toward open-source world. This will help them to kick-start journey as a Open-Source contributor.
Working on your first Pull Request? You can learn how from this free series [How to Contribute to an Open Source Project on GitHub][egghead]
The following are guidelines for contributing to this project.
- Fork and clone the repo
- Write all about docker
- Push your into your working
- Make PR and don't forget to edit README.md for contributor.
Tip: Keep your
master
branch pointing at the original repository and make pull requests from branches on your fork. To do this, run:git remote add upstream https://github.com/kirahxr/dockers git fetch upstream git branch --set-upstream-to=upstream/master master
This will add the original repository as a "remote" called "upstream," Then fetch the git information from that remote, then set your local
master
branch to use the upstream master branch whenever you rungit pull
. Then you can make all of your pull request branches based on thismaster
branch. Whenever you want to update your version ofmaster
, do a regulargit pull
.