gobuffalo / docs

The source for the Buffalo website
https://gobuffalo.io
MIT License
112 stars 153 forks source link

Adding .yarn folder . #659

Closed RatamaG closed 2 years ago

RatamaG commented 2 years ago

Adding .yarn folder in the structure of a buffalo proyects in getting started doc/directory structure.

netlify[bot] commented 2 years ago

Deploy Preview for gobuffalo ready!

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...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site settings.

sio4 commented 2 years ago

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.