前提・実現したいこと
laravel-appが邪魔しているみたいで、変更した箇所がgit desktop上に表示されない。
Commit to mainを押すとエラーメッセージが表示される。
laravel-appはファイルではなく、ディレクトリーです。
なぜ、ここに一つだけ表示されている..
発生している問題・エラーメッセージ
php
1On branch ユーザー管理機能 2Your branch is up to date with 'origin/ユーザー管理機能'. 3 4Untracked files: 5 (use "git add <file>..." to include in what will be committed) 6 laravel-app/ 7 8nothing added to commit but untracked files present (use "git add" to track) 9
該当のソースコード
php
1 % git status 2 3On branch main 4Your branch is up to date with 'origin/main'. 5 6Changes to be committed: 7 (use "git restore --staged <file>..." to unstage) 8 modified: app/Http/Controllers/Auth/RegisterController.php 9 new file: app/Http/Controllers/HomeController.php 10 modified: composer.json 11 modified: composer.lock 12 modified: config/app.php 13 new file: install-ja-lang.php 14 new file: package-lock.json 15 modified: package.json 16 modified: public/css/app.css 17 modified: public/js/app.js 18 new file: public/mix-manifest.json 19 modified: resources/js/app.js 20 new file: resources/lang/ja.json 21 new file: resources/lang/ja/auth.php 22 new file: resources/lang/ja/pagination.php 23 new file: resources/lang/ja/passwords.php 24 new file: resources/lang/ja/validation.php 25 new file: resources/views/auth/login.blade.php 26 new file: resources/views/auth/passwords/confirm.blade.php 27 new file: resources/views/auth/passwords/email.blade.php 28 new file: resources/views/auth/passwords/reset.blade.php 29 new file: resources/views/auth/register.blade.php 30 new file: resources/views/auth/verify.blade.php 31 new file: resources/views/home.blade.php 32 new file: resources/views/layouts/app.blade.php 33 modified: resources/views/welcome.blade.php 34 modified: routes/web.php 35 modified: webpack.mix.js 36
試したこと
php
1$ git add laravel-app 2fatal: pathspec 'laravel-app' did not match any files 3 4$ git add -A 5なんのメッセージも表示されない 6 7$ git add 8Nothing specified, nothing added. 9Maybe you wanted to say 'git add .'? 10 11% git add . 12なんのメッセージも表示されない 13
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。