gitlab
Can’t connect IntelliJ-IDEA to GitLab with SSH
Try to install plugin: Settings -> Plugins -> Browse repositories -> type GitLab Projects Plugin minimum version 1.3.0 and go to Settings -> Other Settings -> GitLab Settings Fill GitLab Server Url with https://gitlab.com/ (ensure slash at the end) and GitLab API Key with string (private token which is shown as the first thing on: … Read more
GIT push, HTTP code = 502 error
The remote end hangs up because the pack size you are trying to transmit exceeds the maximum HTTP post size. Try to limit this pack size with git config –local http.postBuffer 157286400 to 150MB.
Installing gitLab missing modernizer?
I ran into this same problem a few minutes ago. Looks like the classy folks behind Modernizr’s Rubygem yanked the most recent versions. You can download the latest gem (Modernizr-2.5.2 as required in the docs there) running the following command inside your /home/git/gitlab directory: wget http://rubygems.org/downloads/modernizr-2.6.2.gem Then, go ahead and run gem install modernizr (without … Read more
git clone works; git submodule fails “Permission denied”
Git tries to clone the submodule using ssh and not https. If you haven’t configured your ssh key this will fail. You can setup ssh-agent to cache the password for the ssh key and get git to use that. Or change to https. Git is a bit confusing regarding submodules. They are configured in the … Read more