api-platform / api-pack

A Symfony pack for API Platform
https://api-platform.com
MIT License
524 stars 32 forks source link

Add README.md. #11

Closed lloy0076 closed 6 years ago

lloy0076 commented 6 years ago

Shamelessly "borrowed" README.md from:

Added LICENSE file from:

It is possible that:

As for the last point, I am trying to guess what this package does and api-platform/core is the most likely primary reason for installing this pack.

Closes #1

greg0ire commented 6 years ago

You can amend your commit message to include Closes #1 if you want to benefit from autoclose

greg0ire commented 6 years ago

It's probably best if you squash your commits

How to do that?

  1. git rebase -i origin/master, assuming origin is a git remote that points to this repository, and not your fork. If you're not sure what your remotes are, run git remote -vvv, there should be your fork and the holy/reference/base/origin/whatever-you-call-it repository.
  2. A window will show up with many lines, replace pick with fixup on every line but the first one
  3. Close your editor, git should do its magic, and you should end up with one commit
  4. Use git push --force to overwrite what you already pushed. Don't forget the --force option otherwise git will try to merge both things together.
soyuka commented 6 years ago

we can also squash when merging manually if needed!