Skip to content

Commit

Permalink
new: READMEPT
Browse files Browse the repository at this point in the history
  • Loading branch information
Luidooo committed May 11, 2024
1 parent 0f8feb8 commit 7bbdf02
Show file tree
Hide file tree
Showing 2 changed files with 58 additions and 11 deletions.
47 changes: 47 additions & 0 deletions PT/READMEPT.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
# EdraDocs

[Documentação em Inglês](../README.md)

## Documentação Oficial da Área de Equipe de Robótica (EDRA) na Universidade de Brasília

## Como executar?
```bash
pip install mkdocs-material
```
```bash
mkdocs serve
```
em seguida, acesse http://127.0.0.1:8000/

# Como contribuir?

1. Faça um Fork do Repositório: Clique no botão "Fork" no canto superior direito da página do repositório no GitHub. Isso criará uma cópia do repositório em sua conta do GitHub.

2. Clone o Repositório Forkado: Clone o repositório forkado para sua máquina local usando o comando git clone seguido pela URL do seu fork. Por exemplo:
```bash
git clone https://github.com/seu-nome-de-usuario/nome-do-repositorio.git
```
3. Crie um Novo Branch: Crie um novo branch para trabalhar em suas alterações. Use um nome descritivo para seu branch que reflita as mudanças que você está fazendo. Por exemplo:
```bash
git checkout -b feature/new-feature
```
4. Faça Alterações: Faça as alterações desejadas no código usando seu editor de texto ou IDE preferido.

5. Comite as Alterações: Assim que você fizer suas alterações, comite-as para seu repositório local usando o comando 'git commit'. Certifique-se de fornecer uma mensagem de commit significativa que descreva as alterações que você fez. Por exemplo:
```bash
git add .
```
```bash
git commit -m "Add new feature"
```
6. Envie as Alterações: Envie suas alterações para seu repositório forkado no GitHub usando o comando 'git push'. Por exemplo:
```bash
git push origin feature/new-feature
```
7. Crie um Pull Request: Vá para a página do GitHub do seu repositório forkado e clique no botão "New pull request". Compare as alterações entre seu branch e o branch principal do repositório original. Forneça um título e descrição descritivos para o seu pull request, explicando as alterações que você fez.

8. Revisão e Discussão: Após criar o pull request, outros colaboradores ou mantenedores podem revisar suas alterações e fornecer feedback. Esteja receptivo a quaisquer comentários ou sugestões feitas.

9. Aborde o Feedback (Se Necessário): Se feedback for fornecido, faça quaisquer alterações necessárias em seu código com base no feedback recebido. Comite e envie as alterações para seu branch.

10. Mescle o Pull Request: Uma vez que seu pull request tenha sido aprovado e todas as discussões tenham sido resolvidas, um mantenedor do repositório original mesclará suas alterações no branch principal.
22 changes: 11 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[Portuguese Documentation](./Pt/ReadmePT.md)

# Official Documentation of the Robotics Team Area (EDRA) at the University of Brasilia
## Official Documentation of the Robotics Team Area (EDRA) at the University of Brasilia

## How to run?
```bash
Expand All @@ -15,28 +15,30 @@ than enter on http://127.0.0.1:8000/

## How to Contribute?

We welcome contributions to our project! Follow these steps to contribute via a pull request:

1. Fork the Repository: Click on the "Fork" button in the top-right corner of the repository's GitHub page. This will create a copy of the repository in your GitHub account.

2. Clone the Forked Repository: Clone the forked repository to your local machine using the git clone command followed by the URL of your fork. For example:

```bash
git clone https://github.com/your-username/repository-name.git

```
3. Create a New Branch: Create a new branch to work on your changes. Use a descriptive name for your branch that reflects the changes you're making. For example:

```bash
git checkout -b feature/new-feature

```
4. Make Changes: Make your desired changes to the codebase using your preferred text editor or IDE.

5. Commit Changes: Once you've made your changes, commit them to your local repository using the git commit command. Be sure to provide a meaningful commit message that describes the changes you've made. For example:

```bash
git add .
```
```bash
git commit -m "Add new feature"

```
6. Push Changes: Push your changes to your forked repository on GitHub using the git push command. For example:

```bash
git push origin feature/new-feature
```

7. Create a Pull Request: Go to the GitHub page of your forked repository and click on the "New pull request" button. Compare the changes between your branch and the original repository's main branch. Provide a descriptive title and description for your pull request, explaining the changes you've made.

Expand All @@ -46,7 +48,5 @@ git push origin feature/new-feature

10. Merge Pull Request: Once your pull request has been approved and all discussions have been resolved, a maintainer of the original repository will merge your changes into the main branch.

Congratulations! You've successfully contributed to the project via a pull request.

Thanks mkdocs!

0 comments on commit 7bbdf02

Please sign in to comment.