This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
To move a repo to gitlab from github: | |
1. create ssh keys for gitlab if needed. | |
very good instructions for this step are on the gitlab site. See: | |
https://docs.gitlab.com/ee/user/ssh.html | |
2. tell ssh how to access those keys if they're in a different directory. | |
eval $(ssh-agent -s) | |
ssh-add /home/azureuser/.ssh/gitlab/id_ed25519 // the path to your gitlab ssh keys | |