Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Now, from the GitLab Dashboard page, go to Profile Settings -> SSH Keys and take the complete contents of your new id_rsa.pub file and use it to “Add key” to GitLab. 

Config file

You may need to create  If you need a config file in your ~/.ssh/ directory. This file contains configuration information for our BlinkMobile Hosted GitLab service. 

 

Code Block
languagephp
themeRDark
firstline1
titleconfig
Host=gitlab.blinkm.io
Hostname=gitlab.blinkm.io
Port=40022
User=git
IdentityFile=~/.ssh/id_rsa

Note: Change the value of the IdentityFile= location to the location of your SSH keys. 

as part of your setup, see the Troubleshooting section of this documentation. 

Testing your setup

You can test your setup by running the appropriate commands on the command line, or by adding a new remote GitLab repository path to your local Git client and testing the pull, push and commit functionality. 

...