If you think that you can add a new feature or want to fix a bug, we invite you to contribute to football-team-flags and make this project better. To start contributing, follow the below instructions:
-
Fork this repository
-
Clone your forked repository of project
git clone https://github.com/<your_username>/football-team-flags.git
- Navigate to the project directory:
cd football-team-flags
- Add a reference(remote) to the original repository:
git remote add upstream https://github.com/laisfrigerio/football-team-flags.git
- Check the remotes for this repository:
git remote -v
- Always take a pull from the upstream repository to your main branch to keep it updated as per the main project repository:
git pull upstream main
- Create a new branch (prefer a branch name that relates to your assigned issue):
git checkout -b <YOUR_BRANCH_NAME>
-
Perform your desired changes to the code base
-
Check your changes:
git status
git diff
- Stage your changes:
git add . <\files_that_you_made_changes>
- Commit your changes:
git commit -m "relavant message"
- Push the committed changes in your feature branch to your remote repository:
git push -u origin <your_branch_name>
-
To create a pull request, click on
compare and pull requests
-
Add an appropriate title and description to your PR explaining your changes
-
Click on
Create pull request
Congratulations 🎉, you have made a PR to the football-team-flags
. Wait for your submission to be accepted and your PR to be merged by a maintainer.