The goal of this task is to provide you with a comprehensive understanding of key version control concepts
Below you can find instructions for both downloading and solving the task
- Hit the green button 'Code'
- Copy the repo URL, it MUST be
https://github.com/abdalazeezS/git-session-task.git - On your local device, go to your working folder, open the terminal and paste the command
git clone https://github.com/abdalazeezS/git-session-task.git
- Open the folder in vs code and start coding
Solving the Task - Gender in lowercase (male/female) - put the correct usernames for GitHub and LinkedIn
- Create a branch with your name followin the "kebab-case" naming convention, (e.g)
abdalazeez-shahateet - On your local device, switch to your branch using the commmand
git checkout your-branch-name - Do your changes, go to
data/index.jsand add a new record (object) for you in theprofilesarray - Add your changes to staging using the command
git add . - Commint your changes using the command
git commit -m 'your commit message' - Push your changes using the command
git push - Go to the GitHub repo -> Pull Requests -> Create a new pull request (from
your-branch->Main) and add me as a reviewer
If you got stuck in anything, feel free to ask me, BUT .... TRY TO SOLVE IT BY YOURSELF FIRST