warning: in the working copy of '.idea/inspectionProfiles/profiles_settings.xml', LF will be replaced by CRLF the next time Git touches it warning: in the working copy of '01_target.md', LF will be replaced by CRLF the next time Git touches it warning: in the working copy of '11_introduction.md', LF will be replaced by CRLF the next time Git touches it warning: in the working copy of '21_install_and_seettings.md', LF will be replaced by CRLF the next time Git touches it warning: in the working copy of '31_init_add_commit.md', LF will be replaced by CRLF the next time Git touches it warning: in the working copy of '41_ide.md', LF will be replaced by CRLF the next time Git touches it warning: in the working copy of '51_branch.md', LF will be replaced by CRLF the next time Git touches it warning: in the working copy of '61_detached_head.md', LF will be replaced by CRLF the next time Git touches it warning: in the working copy of '62_reset.md', LF will be replaced by CRLF the next time Git touches it warning: in the working copy of '71_remote_repository_about.md', LF will be replaced by CRLF the next time Git touches it warning: in the working copy of '72_remote_tracking_branch.md', LF will be replaced by CRLF the next time Git touches it warning: in the working copy of '73_remote.md', LF will be replaced by CRLF the next time Git touches it warning: in the working copy of '74_fetch_push_pull.md', LF will be replaced by CRLF the next time Git touches it warning: in the working copy of '81_remote_with_ide.md', LF will be replaced by CRLF the next time Git touches it warning: in the working copy of '91_clone.md', LF will be replaced by CRLF the next time Git touches it warning: in the working copy of 'readme.md', LF will be replaced by CRLF the next time Git touches it
更に続けて git commit "最初のコミット"を入力すると以下のように表示されます
error: pathspec '最初のコミット' did not match any file(s) known to git
PS E:\Python講座\git & GitHub講座\test> git init Reinitialized existing Git repository in E:/Python講座/git & GitHub講座/test/.git/ PS E:\Python講座\git & GitHub講座\test> git status On branch master
No commits yet
nothing to commit (create/copy files and use "git add" to track) PS E:\Python講座\git & GitHub講座\test> git add -A PS E:\Python講座\git & GitHub講座\test> git commit -m "最初のコミット" On branch master
Initial commit
nothing to commit (create/copy files and use "git add" to track)
小底秀史さんの投稿
(投稿ID: 5428)
そのまま続けてgit add -Aを入力すると以下のように表示されます
warning: in the working copy of '.idea/inspectionProfiles/profiles_settings.xml', LF will be replaced by CRLF the next time Git touches it
warning: in the working copy of '01_target.md', LF will be replaced by CRLF the next time Git touches it
warning: in the working copy of '11_introduction.md', LF will be replaced by CRLF the next time Git touches it
warning: in the working copy of '21_install_and_seettings.md', LF will be replaced by CRLF the next time Git touches it
warning: in the working copy of '31_init_add_commit.md', LF will be replaced by CRLF the next time Git touches it
warning: in the working copy of '41_ide.md', LF will be replaced by CRLF the next time Git touches it
warning: in the working copy of '51_branch.md', LF will be replaced by CRLF the next time Git touches it
warning: in the working copy of '61_detached_head.md', LF will be replaced by CRLF the next time Git touches it
warning: in the working copy of '62_reset.md', LF will be replaced by CRLF the next time Git touches it
warning: in the working copy of '71_remote_repository_about.md', LF will be replaced by CRLF the next time Git touches it
warning: in the working copy of '72_remote_tracking_branch.md', LF will be replaced by CRLF the next time Git touches it
warning: in the working copy of '73_remote.md', LF will be replaced by CRLF the next time Git touches it
warning: in the working copy of '74_fetch_push_pull.md', LF will be replaced by CRLF the next time Git touches it
warning: in the working copy of '81_remote_with_ide.md', LF will be replaced by CRLF the next time Git touches it
warning: in the working copy of '91_clone.md', LF will be replaced by CRLF the next time Git touches it
warning: in the working copy of 'readme.md', LF will be replaced by CRLF the next time Git touches it
更に続けて git commit "最初のコミット"を入力すると以下のように表示されます
error: pathspec '最初のコミット' did not match any file(s) known to git
何が問題なのか教えていただけると助かります
小川 慶一さんのコメント
(コメントID: 8008)
実際に入力されたコマンドも含めて投稿いただかないとわからないので、コマンドプロンプトで実際に入力したコマンドも含めてすべて貼りつけて投稿してください。
以下の要領です。
よろしく、お願いします。
小川 慶一さんのコメント
(コメントID: 8009)
warning: in the working copy of '.idea/inspectionProfiles/profiles_settings.xml', LF will be replaced by CRLF the next time Git touches it
↑
.idea というディレクトリがすでにありますね。
Pycharmの設定ファイルが含まれるディレクトリです。なので、すでにこのディレクトリをPycharmで開いたことがあるのではないかと。
git init からコマンドをテストしたいということでしたら、何もないまっさらなディレクトリで試してください。
それから、以降の warning から推察するに、サンプルデータを zip でDLして解凍して得られたものではないかと思います。
これらもない状態で、自分でテキストファイル等を追加したり編集したり削除したりということについてまずは試してください。
> git commit "最初のコミット"を入力すると
git commit -m "最初のコミット" です。 -m が抜けています。
あと、 git の状態を確認するには、 git status コマンドを実行してください。
その結果を含めて投稿いただければと。
よろしくお願いします。
小底秀史さんのコメント
(コメントID: 8012) 添付ファイルのダウンロード権限がありません
新規フォルダ”test"を作成し、そこをpowershellで開きコマンド入力をしてみました。結果は添付の通りです。(何度かgit init を入力してみましたが
gitフォルダは作成されていません)
どこに問題があるのか教えていただけると助かります
小底秀史さんのコメント
(コメントID: 8013) 添付ファイルのダウンロード権限がありません
小川 慶一さんのコメント
(コメントID: 8014)
> コメント欄からファイル添付したのですが画像が表示されていません。やり方が間違ってるのでしょうか?
ちょっと分からないです。
画像の拡張子を教えてください。
git init をした結果、powershell で出力されたメッセージもすべて投稿文に含めてください。
よろしくお願いします。
小底秀史さんのコメント
(コメントID: 8015) 添付ファイルのダウンロード権限がありません
このコメントにも一応添付しているのですが
小底秀史さんのコメント
(コメントID: 8016)
PS E:\Python講座\git & GitHub講座\test> git init
Reinitialized existing Git repository in E:/Python講座/git & GitHub講座/test/.git/
PS E:\Python講座\git & GitHub講座\test> git status
On branch master
No commits yet
nothing to commit (create/copy files and use "git add" to track)
PS E:\Python講座\git & GitHub講座\test> git add -A
PS E:\Python講座\git & GitHub講座\test> git commit -m "最初のコミット"
On branch master
Initial commit
nothing to commit (create/copy files and use "git add" to track)
小川 慶一さんのコメント
(コメントID: 8017)
じゃないと、自力で問題解決できるだけの力はつかないです。
> Reinitialized existing Git repository in E:/Python講座/git & GitHub講座/test/.git/
「E:/Python講座/git & GitHub講座/test/.git/」にすでに存在する Git リポジトリを再初期化した
ということですね。
「再初期化」って書いてあるので、すでに .git ディレクトリ(フォルダ)がある状態で git init したのでしょう。
このログは、2回目以降の git init 実行結果だったはずです。
本当に最初の最初に git init したときは、おそらく違うメッセージだっただろうと。
あと、 .git フォルダは改めて講座では説明していませんが、隠しフォルダです。
エクスプローラのオプションから隠しファイル/隠しフォルダを表示するよう設定変更して、それから確認されると良いかと思います。
それでも表示されない場合はエクスプローラで再読み込みしてください [F5] のショートカットです。
以上のとおりですので、もう一度この回答内容を踏まえて取り組んでください。
その結果を報告いただければと。
よろしくお願いいたします。
小底秀史さんのコメント
(コメントID: 8018)
隠しフォルダの表示でgitファイルを見つけました。
英語のメッセージも読んでコメントしたいと思います。
ありがとうございます。