前提・実現したいこと
ここに質問の内容を詳しく書いてください。
簡潔=>既存のリポジトリに。新しく作成した、ファイルを追加したいです。
詳しい内容=>
https://github.com/Taitai6521/git_repo_back === A
上の、リポジトリ(すでにデプロイしてある)に、さらに、ファイルを追加したいのですが、どうすれば良いのかわかりかねます。
ff.htmlがまだうえ(A)のリポジトリに入っていないので、それを、add,commitして、
remoteの登録はすでに、bakで、してるので、
git push bak masterとして、ff.htmlのファイルをデプロしたいです。
■■な機能を実装中に以下のエラーメッセージが発生しました。
発生している問題・エラーメッセージ
base) SN:git_tutorial SN$ git init Reinitialized existing Git repository in /Users/SN/プログラミング/git_tutorial/.git/ (base) SN:git_tutorial SN$ ls ff.html index1.html secret.txt train train.py (base) SN:git_tutorial SN$ git add ff.html (base) SN:git_tutorial SN$ git commit -m"try" [master df5a712] try 1 file changed, 2 insertions(+) create mode 100644 ff.html (base) SN:git_tutorial SN$ git s On branch master Your branch is ahead of 'bak/master' by 1 commit. (use "git push" to publish your local commits) Untracked files: (use "git add <file>..." to include in what will be committed) train nothing added to commit but untracked files present (use "git add" to track) (base) SN:git_tutorial SN$ git remote add origin https://github.com/Taitai6521/git_repo_back fatal: remote origin already exists. (base) SN:git_tutorial SN$ git push bak master To https://github.com/Taitai6521/git_repo_back.git ! [rejected] master -> master (fetch first) error: failed to push some refs to 'https://github.com/Taitai6521/git_repo_back.git' hint: Updates were rejected because the remote contains work that you do hint: not have locally. This is usually caused by another repository pushing hint: to the same ref. You may want to first integrate the remote changes hint: (e.g., 'git pull ...') before pushing again. hint: See the 'Note about fast-forwards' in 'git push --help' for details. (base) SN:git_tutorial SN$
試したこと
新しく、
git remote add tutorial(任意の名前) https://github.cm/user
で、やって、pushすればできるのですが、すでにあるものだとわからないです。エラーが出ます。
補足情報(FW/ツールのバージョンなど)
mac11,2,1
, terminal
よろしくおねがいします。
あなたの回答
tips
プレビュー