Challenge: Profile README
Contribute to the "Community" directory by creating a Profile README containing information about yourself that you want to share with the community. Additionally, you can include links to your project challenges and articles on the Digital Innovation One platform.
Get inspired by checking the examples in the "community" folder, explore some utilities in the "utils" folder and use your creativity to build yours 😊💙.
Instructions:
-
Fork this repository;
-
Clone locally
git clone https://github.com/YOURUSERNAME/dio-lab-open-source.git; -
Add the upstream remote to keep your local repository up to date:
git remote add upstream https://github.com/digitalinnovationone/dio-lab-open-source.git. Use the commandgit pull upstream mainto fetch and merge changes into your local repository based on the main branch of the original repository you forked from, orgit fetch upstream mainto fetch without merging. See more at: "Getting Started with Git and GitHub"; -
Create a new branch and name it
feat/community/yourgithubusername. Example:feat/community/falvojr; -
Inside the "community" folder, create a Markdown file (extension
.md) and name it with your GitHub username. Example:falvojr.md; -
Build your profile. You can view examples in the community folder and add some of the utilities from the "utils" folder. Note: Use other examples as inspiration, not as direct copies;
-
Add your changes to the staging area with the command
git add community/yourgithubusername.md; -
Create a commit and add a message indicating the addition of your profile:
git commit -m"feat: add yourgithubusername profile"; -
Push the changes to your remote repository:
git push origin feat/community/yourgithubusername; -
Create a Pull Request.