code-relay icon indicating copy to clipboard operation
code-relay copied to clipboard

Contribute

Open akabakass opened this issue 4 years ago • 5 comments

PHP, HTML, CSS, Vanilla Js

akabakass avatar Apr 19 '21 11:04 akabakass

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

mmulet avatar Apr 19 '21 15:04 mmulet

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 ;)

akabakass avatar Apr 20 '21 07:04 akabakass

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:

  1. Fork the project (either from the GitHub interface or the Github cli
  2. git clone your-forked-version, not the original. git clone https://github.com/ akabakass/xxx
  3. make changes
  4. git add files changed or git add -A to add everything
  5. git push (this will push to your forked version)
  6. Make a pull request to the original from your forked version.

I should have your next task in an hour or two.

mmulet avatar Apr 20 '21 14:04 mmulet

ok Thanks a lot, will do that for the next one

akabakass avatar Apr 20 '21 15:04 akabakass

Here is your next task: https://github.com/code-relay-io/magento-laravel-api/blob/master/README.md

mmulet avatar Apr 20 '21 16:04 mmulet