実際のところ
新しいリポジトリの作成方法は
Create a project | GitLab
sshまわりの設定
$ cd ~/.ssh $ ssh-keygen.exe -t rsa -N $YOURPASSWORD -C alwayswithyou -f gitlab_key
更に~/.ssh/configに以下を追記
Host gitlab.com HostName gitlab.com IdentityFile ~/.ssh/gitlab_key User git
gitのコマンド
既に存在しているリポジトリなので、リモートを追加するのみ
git remote add origin git@gitlab.com:YOURORG/YOURREP.git
初回なので、追いつくように
git push --set-upstream origin master