前提・実現したいこと・状況
commitに苦戦してます。
追加でstudy1-angularというファイルをコミットしたのですが、ファイルに変なマークがついて参照ができない状況です。
git status
On branch master Changes not staged for commit: (use "git add <file>..." to update what will be committed) (use "git restore <file>..." to discard changes in working directory) (commit or discard the untracked or modified content in submodules) modified: study1-angular (modified content, untracked content) Untracked files: (use "git add <file>..." to include in what will be committed) .DS_Store no changes added to commit (use "git add" and/or "git commit -a")
試したこと
新しくcommit3を作成して、pushしたらエラーが出ました。
On branch master Changes not staged for commit: modified: study1-angular (modified content, untracked content) Untracked files: .DS_Store no changes added to commit
調べると、
すでにリポジトリにあるファイルを変更する場合、git addステージングしたい場合は再度それを行う必要があります。
ステージングの概念が分からず理解ができません。
ファイルへの変更の取り消しを行わないといけないということですか?
ぜひ、ご教授いただけたらありがたいです。
参照:
https://git-scm.com/book/ja/v2/Git-%E3%81%AE%E5%9F%BA%E6%9C%AC-%E4%BD%9C%E6%A5%AD%E3%81%AE%E3%82%84%E3%82%8A%E7%9B%B4%E3%81%97
ステージングの概念が分からないということは、gitがほぼ全く分からないということです。入門サイトなどでgitの学習をしましょう。
回答3件
あなたの回答
tips
プレビュー