Access to redmine.iha.dk without disabling ssl verification globally
Choose a folder to contain the repo-content: cd /the/folder Open a terminal and init an empty git repository: git init . Disable ssl check for that repository: git config http.sslVerify "false" Set the remove path to the repository: git remote add origin <the-repo> git remote add origin https://redmine.iha.dk/courses/ittapk/ittapk_e2015.git Pull the repository: git pull origin master Make pull automatically pull master: git branch --set-upstream-to=origin/master master