1,885
edits
Changes
→Weeks 6 - 13
= Weeks 6 - 13 =
* Project work
= Week 8 =
* Git
** See http://git-scm.org for basic notes and tutorials
* Using a Git repository
== ToDo ==
=== Simple Remote Repository Exercise ===
* Clone the repository:
git clone git://england.proximity.on.ca/play
cd play
* Add a branch for your stuff:
git checkout -b $YourName
(add and commit some stuff:)
* Push the branch to the server:
git push --all
* Verify that the branch is on the server:
git ls-remote
* Pull someone else's branch:
git pull origin $SomeoneElsesBranch
git checkout $SomeoneElsesBranch
= Exam Week =