This is a repository for the starter code of homework for EE267 (Spring 2018, Stanford University). We are going to release the starter code of each homework weekly here.
If it is your first time to use Git, please go through one of the tutorials of Git to understand basic functionalities. If you know how to clone
, commit
and pull
, you can skip it. The GitHub's official basic tutorial is available here.
You can either use CUI or GUI to clone this repository. However, Please do not Download ZIP this repositoy! If you prefer the GUI way, you can use GitHub desktop to clone this repository.
If you prefer the CUI way, you can clone this repository to your local machine through your terminal by
git clone https://github.com/stanfordcomputationalimaging/ee267_hw.git
Then, you are good to go! Enjoy the homework! The submission procedure is described in the homework document.
Now, you should have this repository in your local machine. Before pulling the new homework, you need to make a commit of your change in your local repository. For example, you can execute
git add --all
git commit -m "Your message. (eg. Homework 1 is done.)"
Then, execute
git pull origin master