実現したいこと
EC2にてレポジトリの追加
###試したこと
ローカルで作成したrailsのアプリケーションをAWSにあげたいと思い、世界一丁寧なAWS解説。EC2を利用して、RailsアプリをAWSにあげるまでを参考に、進めていました。
$ ssh -T github
で、githubにログインした後に、
Hi (ユーザー名)! You've successfully authenticated, but GitHub does not provide shell access.
が表示され、無事に接続成功したようでした。
ですが、その後に
$ git clone git@github.com:~~~~~~~~~~~~
でgit cloneをしようとすると、
$ git clone git@github.com:~~~~~~~~~~~~ Cloning into 'レポ名'... ERROR: Repository not found. fatal: Could not read from remote repository. Please make sure you have the correct access rights and the repository exists.
レポジトリがないのかと思い、git remote -vで調べてみると、
$ git remote -v origin github: (fetch) origin github: (push)
普通、urlが表示されるはすですが、表示されていません。
ここで、git remote rmで削除後にgit remote add origin git@github.com:~~~~~
などを試しましたが結果は変わらず。
調べてもなかなか解決しないため、ご質問させていただきました。
回答、お待ちしております。
環境
MacBook Air
VS code
AWS(VPC,EC2)
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/02/20 12:22
2020/02/20 21:51
2020/02/21 14:53