GitHubにて1回目アップしたものを全てのファイルを更新(2回目のpush)がしたいです
現在プログラミングの勉強をし始めてやく4ヶ月頃となりますが、恥ずかしながらインプットばかりで
アウトプットをしてなかった為、Githubを今まで活用をしてきませんでした。
ネットにて調べて、リポジトリを作成して下記コマンドにて(1回目)のアップを実施しました。
cmd
1$ git init 2$ git add -A 3$ git commit -m "コメント" 4$ git remote add origin https://github.com/xxx/xxx.git 5$ git push origin master
下記コマンドを入力したがエラーが出てアップ出来なかったです。。
cmd
1xxx@xxxMacBook-ea janken-app % git add -A 2 3warning: adding embedded git repository: portfolio 4hint: You've added another git repository inside your current repository. 5hint: Clones of the outer repository will not contain the contents of 6hint: the embedded repository and will not know how to obtain it. 7hint: If you meant to add a submodule, use: 8hint: 9hint: git submodule add <url> portfolio 10hint: 11hint: If you added this path by mistake, you can remove it from the 12hint: index with: 13hint: 14hint: git rm --cached portfolio 15hint: 16hint: See "git help submodule" for more information.
cmd
1xxx@xxxMacBook-ea janken-app % git commit -m "second commit." 2 3[main 032e42a] second commit. 4 6 files changed, 86 insertions(+), 18 deletions(-) 5 create mode 100644 .firebase/hosting.ZGlzdA.cache 6 create mode 100644 .firebaserc 7 create mode 100644 firebase.json 8 create mode 160000 portfolio
cmd
1xxx@xxxMacBook-ea janken-app % git push origin master 2 3error: src refspec master does not match any 4error: failed to push some refs to 'https://github.com/xxx/janken-app.git' 5xxx@xxxMacBook-ea janken-app %
GitHubの使い方がまだ分からず手探り状態なところが正直なところです。。
一度リポジトリにアップしたものに全てのファイルを更新したいのですが、
どのようにコマンドを入力してあげたらよろしいのでしょうか。
分かる方いらっしゃいましたらお力添えをいただきたいです。
よろしくお願いいたします。
・1 回目に push したものと、2 回目に push しようとしてるものは同じローカルリポジトリですか?
・git add -A の時に adding embedded git repository と言われてるので、リポジトリの中に別のリポジトリが存在するようです。
・初回のブランチ名は master なのに、2 回目にコミットしたのは main ですよね…。
・1 回目に push したものと、2 回目に push しようとしてるものは同じローカルリポジトリですか?
⇨同じローカルリポジトリになります。
コードを訂正したものをGitHubで更新をしたいです。。
・git add -A の時に adding embedded git repository と言われてるので、リポジトリの中に別のリポジトリが存在するようです。
⇨リポジトリの中に別のリポジトリですか・・
リポジトリをGitHubにて作成してから、既存ファイルを全てドラッグ&ドロップでアップをしました。
そこでGitHub Pagesを使いたくてクローンをしてみたり色々と試してみてしまっていたので、
それが原因かもしれません。。
・初回のブランチ名は master なのに、2 回目にコミットしたのは main ですよね…。
既存ファイルをドラッグ&ドロップでアップしたのがダメだったのでしょうか。。
確かにPagesの時、sauceはmainになっておりました。
> 既存ファイルを全てドラッグ&ドロップでアップ
なるほど、今はそういう使い方ができるんですね。私の知らない世界だ…。
回答1件
あなたの回答
tips
プレビュー