Skip to main content

Git

Log

git log 

List which files have been modified or staged locally

git status 

Commit changes

git add .
git commit -m "Fixed Something"
git push -u origin master

Pull

git init
git pull http://git.myhypervisor.ca/myhypervisor/project.git

Fetch

git fetch --all

Changes the URL of the repository.

git remote set-url origin http://git.myhypervisor.ca/myhypervisor/project.git

Create a remote repo pointing on your existing GitHub repository

git remote add origin http://git.myhypervisor.ca/myhypervisor/project.git

Add new repo