IT Ticketing System
- If at home, follow steps here
Website
- http://mansci-db.uwaterloo.ca/~jg2lam/
- db: mansci-db.uwaterloo.ca/mysqladmin/index.php To ssh into the box:
- [email protected]
- password: Winter2015
To clone this repository:
- git clone [email protected]:jlam732/msci444.git
- follow a tutorial to get github working on computer
To work on stuff:
- in your own repo folder
- do some work
git status
(to see what things you did)git diff
(to see what changes you made)- make changes if you didn't expect what you saw (use
git checkout -- <filename>
to revert to old version) git add <filename>
to stage file for committinggit commit -m '<msg>'
to commit to repo with message that we know what you're doinggit pull
to get all the latest changes- if merge changes, fix them (google how) and then commit a merge (using
git commit
) git push
when you're done (ONLYgit push
after you've pulled)- Login to the box
git pull
in ~/public_html (usepwd
to figure out where you are)- Look at changes on website (may need to CTRL-F5 force refresh)