Closed RatamaG closed 2 years ago
Name | Link |
---|---|
Latest commit | 2236869f9a8b9c8e64cfe0c00c0beb4f64d2f4e4 |
Latest deploy log | https://app.netlify.com/sites/gobuffalo/deploys/629e905ee4d71e0008f23b55 |
Deploy Preview | https://deploy-preview-659--gobuffalo.netlify.app |
Preview on mobile | Toggle QR Code...Use your smartphone camera to open QR code link. |
To edit notification comments on pull requests, go to your Netlify site settings.
Thanks for the fix!
However, I think you can start a new branch from the main branch, not from your previous working branch so each PR has only its own commit. This PR also has the commit for #658.
$ git checkout -b branch-for-658
$ EDIT...
$ git add . && git commit -m "658 ..." && git push
$ git checkout -b branch-for-659 main
$ EDIT...
$ git add . && git commit -m "659 ..." && git push
The last argument for the second git checkout
command is the start point of the new branch.
Adding .yarn folder in the structure of a buffalo proyects in getting started doc/directory structure.