[ENGLISH]
This repository is designed so that students can easily find small projects to learn web and mobile development.
- 0 - Hello World (it won't count)
- 1 - Average Test Score
- 2 - Investment
- 3 - Interest Rate
- 4 - La Padarie
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change. Read our contribution guidelines here!
Does this repo have more challenges than yours? Then update your fork! There are two ways to update your fork:
- GitHub UI
- In your repo make a PR of this repository for yours and accept, simple as that:smile:
- Terminal
# 1. Switch to the master branch
git checkout master
# 2. Check if your local copy has the link to the original
git remote -v
# 3. If not, add the original link
git remote add upstream https://github.com/InfoJrUFBA/web-development-and-mobile-challenges.git
# 4. Make sure that the link has been added
git remote -v
# 5. You can now fetch with the original repo, assuming the link name is 'upstream'
git fetch upstream
# 6. Merge updates to your master branch
git merge upstream/master master
# 7. Push the new changes to your fork
git push origin master
[PORTUGUESE]
Este repositório é destinado para que estudantes possam facilmente achar pequenos projetos para aprender sobre desenvolvimento web e mobile.
- 0 - Hello World (não irá contar)
- 1 - Média do aluno
- 2 - Investimento
- 3 - Taxa de juro
- 4 - La Padarie
Pull requests são bem vindos. Para mudanças maiores, por favor, abra uma issue primeiro para discutir o que você gostaria de alterar. Leia nossas diretrizes de contribuição aqui!
Este repo tem mais desafios do que o seu? Então atualize seu fork! Existem duas formas de atualizar seu fork:
- Pelo UI do GitHub
- Em seu repo faça um PR deste repositório para o seu e aceite, simples assim 😄
- Pelo terminal
# 1. Mudar para a branch master
git checkout master
# 2. Checar se sua cópia local tem o link do original
git remote -v
# 3. Se não, adicione o link do original
git remote add upstream https://github.com/InfoJrUFBA/web-development-and-mobile-challenges.git
# 4. Confirme se o link foi adicionado
git remote -v
# 5. Agora você pode fazer o fetch com o repo original, assumindo que o nome do link é 'upstream'
git fetch upstream
# 6. Fazer merge dos updates para sua branch master
git merge upstream/master master
# 7. Realizar o push para seu fork com as novas mudanças
git push origin master