Announcement: Example questions for your final exam are ready.
This is the sharing repo for CENG 2002 course offered in MSKU Department of Computer Engineering.
Usage:
-
Install git. To start using git you may check the simple tutorials first, then you can dig deeper.
-
Clone the repository:
git clone https://github.com/pembeci/ceng2002.git
-
You can get the latest updates by giving this command in your cloned git directory:
git pull
-
For your experiments create a branch and switch to it:
git checkout -b hobara
-
Later you can delete the branch with:
git branch -d hobara
-
If you are working on a branch, to get the latest files first you need to return to the master branch:
git checkout -b master` # switch to master branch git pull # get latest updates
-
Instead of cloning and creating branches, you may also fork this repo with your github account and then work on your local copy. You need to sync your fork after I added new files.
Visit wiki page for links and other information.
Use issues page for your course related questions.