code-relay
code-relay copied to clipboard
Contribute
PHP, HTML, CSS, Vanilla Js
Here is the latest: PHP taskhttps://github.com/code-relay-io/image/blob/master/README.md
Remember your job is to make incremental progress, break the task into smaller tasks, or finish something in 15 minutes, then pass it along to the next contributor. No responsibility, only fun.
When you have finished your 15 minutes, add your next task to the readme.md. Then make a pull request to the repo.
Email with questions Cheers, Michael
done my first pull request, I'm not really familiar with git (we use svn at work) so it's a simple one. need to get used to it. I've done it from the github interface, but if i understand correctly, from my cli, I should use: git clone xxx // make changes git add files changed git commit then git push Is that it or am I missing some steps? anyway that was fun digging in some other code (even If i just updated the readme this time). waiting for the next one ;)
You are really close, but missing a couple steps. What you described would work for a personal project that you control, but when working with others there are few additional steps. Most projects use the "Fork and Pull Request Workflow", it's really popular you can look it up. In general it works like this:
- Fork the project (either from the GitHub interface or the Github cli
- git clone your-forked-version, not the original.
git clone https://github.com/ akabakass/xxx - make changes
git add files changedorgit add -Ato add everythinggit push(this will push to your forked version)- Make a pull request to the original from your forked version.
I should have your next task in an hour or two.
ok Thanks a lot, will do that for the next one
Here is your next task: https://github.com/code-relay-io/magento-laravel-api/blob/master/README.md