See https://sites.google.com/lbl.gov/cs267-spr2025/hw-1 for details on the assignment.
This is a Git repository. We highly recommend creating your own GitHub repo to track your changes and collaborate with your teammates. Follow these steps to get collaborating:
- Go to https://github.com/new
- Name the repository anything you like, say
cs267-hw1
. Make sure it is set to PRIVATE. - Once this is done, run the following commands:
student@login04:~/hw1> git remote rename origin staff
student@login04:~/hw1> git remote add origin https://github.com/YOUR_GITHUB_USERNAME/cs267-hw1.git
student@login04:~/hw1> git push -u origin master
# If your have a different default branch name on github,
# please run git push -u origin master:github-default-name, e.g.,
# git push -u origin master:main if the default branch name is main.