Skip to content

How to work with Git

Zhe Wang edited this page Sep 30, 2017 · 3 revisions

Fetch code to the local (This should be used at the first time):

git clone https://github.com/kakaiu/codeTracker.git

For each time that you change your local code, please follow:

git pull (to make sure the local code is updated)

(change your code...)

git pull (to make sure the local code is updated)

git add -A (add all changes)

git commit -am "your comments for your update"

git push (push your changes to our repo)

Notice:

the data should not be included when you update

Clone this wiki locally