git初心者です。
以下の流れでgitlabにpushしたいのですがpassword入力で弾かれます。
これはGitlabにログインするときの自分のアカウントのパスワードなのでしょうか?
$ git config --global user.name "hogehoge" $ git config --global user.email "hogehoge@example-jp.com" $ git clone git@gitlab.hoge.huge:piyo/repository-test.git Cloning into 'repository-test'... The authenticity of host 'gitlab.hoge.huge (xxx.xxx.xxx.xxx)' can't be established. RSA key fingerprint is SHA256:xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx. Are you sure you want to continue connecting (yes/no)? yes Warning: Permanently added 'gitlab.hoge.huge,xxx.xxx.xxx.xxx' (RSA) to the list of known hosts. git@gitlab.hoge.huge's password: Permission denied, please try again. git@gitlab.hoge.huge's password: Permission denied, please try again. git@gitlab.hoge.huge's password: git@gitlab.hoge.huge: Permission denied (publickey,gssapi-keyex,gssapi-with-mic,password). fatal: Could not read from remote repository. Please make sure you have the correct access rights and the repository exists. $ git remote add origin git@gitlab.hoge.huge:piyo/repository-test.git $ git add . $ git commit [master (root-commit) a224fef] my first commit 13 files changed, 292252 insertions(+) create mode 100644 .funcpack/index.gen.js create mode 100644 .funcpack/index.js create mode 100644 .funcpack/messages/function.json create mode 100644 .gitignore create mode 100644 PostDeployScripts/prepareSrc.cmd create mode 100644 PostDeployScripts/runGulp.cmd create mode 100644 README.md create mode 100644 host.json create mode 100644 messages/.vscode/launch.json create mode 100644 messages/function.json create mode 100644 messages/index.js create mode 100644 messages/package-lock.json create mode 100644 messages/package.json $ git push -u origin master git@gitlab.hoge.huge's password: Permission denied, please try again. git@gitlab.hoge.huge's password: Permission denied, please try again. git@gitlab.hoge.huge's password: git@gitlab.hoge.huge: Permission denied (publickey,gssapi-keyex,gssapi-with-mic,password). fatal: Could not read from remote repository. Please make sure you have the correct access rights and the repository exists.

回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2018/07/17 15:27
2018/07/18 01:26