-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
contributing - Foi adicionado o arquivo de CONTRIBUTING.md #13
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
@@ -0,0 +1,62 @@ | ||||||
<p align="center"> | ||||||
<br /> | ||||||
<img src="./public/logo.svg" width="400" /> | ||||||
</p> | ||||||
<p align="center"> | ||||||
<a target="_blank" href="https://hacktoberfest.lukin.co">Site</a> • | ||||||
<a href="#setup">Setup</a> • | ||||||
<a href="#license">License</a> • | ||||||
<a target="_blank" href="https://lukin.co">Lukin Co.</a> | ||||||
</p> | ||||||
<br/> | ||||||
<br/> | ||||||
|
||||||
> ## Para contribuir com o projeto você deverar seguir algumas etapas para que seu PR seja aceito. | ||||||
- Fazer um fork do repositório. | ||||||
- Abrir uma issue. | ||||||
- Criar uma branch. | ||||||
- Commitar suas modificações. | ||||||
- Criar uma PR. | ||||||
|
||||||
<br> | ||||||
|
||||||
### Como abrir um issue? | ||||||
|
||||||
Na aba de criar um issue, ao clicar em **`New issue`** você deve descrever o mais claro possivél: | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
|
||||||
- **Title**: com um título que representa o seu issue. | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
- **Leave a comment**: com uma descrição detalhada do que deve ser feito no | ||||||
issue. | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
|
||||||
Se quiser poderá colar codigos para uma descrição mais clara. | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
Feito isso, clique em **`Submit new issue`**. | ||||||
|
||||||
### Como criar um branch? | ||||||
```javascript | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
git checkout -b my-new-feature | ||||||
``` | ||||||
Faça suas alterações e depois um commit. | ||||||
|
||||||
### Como fazer mensagens de commit? | ||||||
```javascript | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
git commit -m '[nome da branch] - Add some feature' | ||||||
``` | ||||||
|
||||||
- Um bom padrão para fazer seus commits comece com o nome da suas branch e depois uma breve descrição dela. | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
|
||||||
Exemplo:<br><br> | ||||||
**"animated-scroll - foi criado uma animação ao fazer um scroll na tela"** | ||||||
|
||||||
### Como criar um pull requests? | ||||||
Após fazer o push de sua branch: | ||||||
|
||||||
```javascript | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
git push -u origin my-new-feature | ||||||
``` | ||||||
|
||||||
- Ir na aba **`Pull requests`** e clicar no botão **`New pull requests`** | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
- Descreva ao maximo de todas as suas alterações na **`PR`** | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
|
||||||
<br> | ||||||
|
||||||
**Depois de mergearmos seu `PR` você pode excluir sua branch.** |
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -11,15 +11,6 @@ | |||||
<br/> | ||||||
<br/> | ||||||
|
||||||
## Contribua | ||||||
|
||||||
- Fork este repositório | ||||||
- Crie uma feature branch: git checkout -b my-new-feature. | ||||||
- `Comite` suas alterações: git commit -m 'Add some feature'. | ||||||
- Envie as alterações para o git: git push origin my-new-feature. | ||||||
|
||||||
Depois de mergearmos seu `PR` você pode excluir sua branch. | ||||||
|
||||||
## Setup | ||||||
|
||||||
### Development | ||||||
|
@@ -38,6 +29,10 @@ yarn build | |||||
npm run build | ||||||
``` | ||||||
|
||||||
## Contribua | ||||||
[Contributing](https://github.com/lukinco/semana-hacktoberfest/blob/master/CONTRIBUTING.md) | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
|
||||||
|
||||||
## License | ||||||
|
||||||
MIT |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.