IEEE Envision Project Assignments for Mentees
- Clone this repo using:
git clone https://github.com/harry7337/EnvisionAssignments.git
- Create your own branch( you can name it anything but preferably use your name) and checkout to that branch.
-
Create a folder in your name and copy the notebook to that folder. This is the file you will be making changes to.
-
Start solving the assignment. If you are stuck at any point stackoverflow and the docs of the respective libraries will definitely help you. Don't be shy to reach out to us.
-
If you want to save your progress(which we recommend that you do that often), commit your changes using the commit command and add a message.
git commit -m "your-msg-here"
- If you want the changes to reflect on the repo(on your branch specifically), be sure to push them.
git push
- If there is an error popping up, you might have to set the upstream:
git push --set-upstream origin <your-branch-name>
OR
git push --u origin <your-branch-name>
All consequent commands need not require you use the -u
option.
-
Once you are finished with the assingments, head over to github and move over to the Pull Request Tab. Compare your branch to the main branch and submit a pull request.
-
Good Luck!