Answering Questions - Vector-Programming/VectorSessions GitHub Wiki
To answer questions go into the QuestionSets
folder. The questions will be found in a .md
in the folder of each topic.
Steps for answering questions:
- Create a folder with the name the same as your name in the respective question set folder
- Create files like
Q1_Answer
... with the solutions to the corresponding questions and put them in the folder - Commit changes to local branch
- Create a pull request
Exact command based directions:
- cd into your forked repo
git pull upstream master
{update your forked repository}- Do your stuff {create/modify/delete files}
git add .
{stage the changes to be committed}git commit -m"<commit_message>"
{commit the new changes to your local repo}git push
{upload your changes to your forked repo}- Open new pull request on Github {to get it reviewed and merged}