###質問内容
Macのターミナルを使ってgithubにpushしようとしています。ですが「Git push 」についての色々記事を見たりして作業しても同じエラーばかり表示されてしまいGit pushができないで詰まっています。このエラーはどのように解決していけば良いのでしょうか?尚、今回のエラーは最近になってgithubの認証においてtokenが使われるようになったために20218月以前と以降ではpushの方法がやや違ってくると思います(基本は同じですが...)よろしくお願いします????♂️
現状としてコミットの際のメッセージ「これでトドメだ!」がターミナルのgit logで確認できる、ターミナルのgit statusでこれ以上の変更なしが確認できることからローカルリポジトリを作成し、コミットするところまでは無事できていると思います。おそらく問題なのはターミナルのgit add部分とターミナルのgit remote部分ができていないからだと思います。
###Git version
git version 2.33.1
###追記1
現状クローンはできるのですが、push,pullができない状態です。
写真中の塗りつぶせている部分はトークンの部分です
###主なエラー文
コード $ git push -u origin master fatal: 'origin' does not appear to be a git repository fatal: Could not read from remote repository.
sasas
###追記2現在のターミナルの状態
コード MasaakinoMacBook-Air:checkmate masa$ git remote add origin https://Masanarea:<トークン>@github.com/Masanarea/lara.git usage: git remote add [<options>] <name> <url> -f, --fetch fetch the remote branches --tags import all tags and associated objects when fetching or do not fetch any tag at all (--no-tags) -t, --track <branch> branch(es) to track -m, --master <branch> master branch --mirror[=(push|fetch)] set up remote as a mirror to push to or fetch from MasaakinoMacBook-Air:checkmate masa$ git push -u origin master fatal: 'origin' does not appear to be a git repository fatal: Could not read from remote repository. Please make sure you have the correct access rights and the repository exists. MasaakinoMacBook-Air:checkmate masa$ git push origin master fatal: 'origin' does not appear to be a git repository 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
のどちらも試したのですが、何も帰ってきません
追記5
コード $ git remote add origin https://@github.com/Masanarea/lara.git usage: git remote add [<options>] <name> <url> -f, --fetch fetch the remote branches --tags import all tags and associated objects when fetching or do not fetch any tag at all (--no-tags) -t, --track <branch> branch(es) to track -m, --master <branch> master branch --mirror[=(push|fetch)] set up remote as a mirror to push to or fetch from MasaakinoMacBook-Air:checkmate masa$ git remote add origin 'https://Masanarea:<トークン>@github.com/Masanarea/lara.git' usage: git remote add [<options>] <name> <url> -f, --fetch fetch the remote branches --tags import all tags and associated objects when fetching or do not fetch any tag at all (--no-tags) -t, --track <branch> branch(es) to track -m, --master <branch> master branch --mirror[=(push|fetch)] set up remote as a mirror to push to or fetch from MasaakinoMacBook-Air:checkmate masa$ git remote add origin 'https://Masanarea:<トークン>@github.com/Masanarea/lara.git' usage: git remote add [<options>] <name> <url> -f, --fetch fetch the remote branches --tags import all tags and associated objects when fetching or do not fetch any tag at all (--no-tags) -t, --track <branch> branch(es) to track -m, --master <branch> master branch --mirror[=(push|fetch)] set up remote as a mirror to push to or fetch from MasaakinoMacBook-Air:checkmate masa$ git remote -v MasaakinoMacBook-Air:checkmate masa$ git remote //git remote addをgit remote set-urlにした場合の挙動 $ git remote set-url origin https://Masanarea:<トークン>@github.com/Masanarea/lara.git usage: git remote set-url [--push] <name> <newurl> [<oldurl>] or: git remote set-url --add <name> <newurl> or: git remote set-url --delete <name> <url> --push manipulate push URLs --add add URL --delete delete URLs MasaakinoMacBook-Air:checkmate masa$ git push -u origin master fatal: 'origin' does not appear to be a git repository fatal: Could not read from remote repository. Please make sure you have the correct access rights and the repository exists. MasaakinoMacBook-Air:checkmate masa$ git push origin master fatal: 'origin' does not appear to be a git repository fatal: Could not read from remote repository. Please make sure you have the correct access rights and the repository exists.
回答4件
あなたの回答
tips
プレビュー