Update local CLaMS repository
Get changes from remote repository
- Fetch and merge changes on the remote server to your working directory:
git pull
See changes before pulling from remote git repository
- Fetch changes from the remote repository:
git fetch
Show commit logs of changes / show diffs of changes:git log --name-status master..origin/master git diff --name-status master origin/master git diff master origin/master
Apply the changes by merge or just pull the changes:git merge or git pull