前提・実現したいこと
変更ファイルが表示されない原因は、laravel-appという、おおもとのリポジトリー全部がgithubの追跡の対象外になっていないことが原因だと思っています。
その結果、配下のファイルたちに編集を加えても、Gitの管理対象外になっているので、GithubDesktopにあがって来ないと仮定しています。
GithubDesktopに変更を表示させたいのですが、関連する記事は2つ見つけましたが、どれも対処法まで記述がないまま終了してしまっていました。
解決方法を探しているます。
php
1$ git add . 2warning: adding embedded git repository: laravel-app 3hint: You've added another git repository inside your current repository. 4hint: Clones of the outer repository will not contain the contents of 5hint: the embedded repository and will not know how to obtain it. 6hint: If you meant to add a submodule, use: 7hint: 8hint: git submodule add <url> laravel-app 9hint: 10hint: If you added this path by mistake, you can remove it from the 11hint: index with: 12hint: 13hint: git rm --cached laravel-app 14hint: 15hint: See "git help submodule" for more information. 16
発生している問題・エラーメッセージ
github
github上では変更ファイルが表示される。
php
1wataruojima@WatarunoMBP laravel-app % git status 2On branch main 3Your branch is up to date with 'origin/main'. 4 5Changes to be committed: 6 (use "git restore --staged <file>..." to unstage) 7 modified: app/Http/Controllers/Auth/RegisterController.php 8 new file: app/Http/Controllers/HomeController.php 9 modified: composer.json 10 modified: composer.lock 11 modified: config/app.php 12 new file: install-ja-lang.php 13 new file: package-lock.json 14 modified: package.json 15 modified: public/css/app.css 16 modified: public/js/app.js 17 new file: public/mix-manifest.json 18 modified: resources/js/app.js 19 new file: resources/lang/ja.json 20 new file: resources/lang/ja/auth.php 21 new file: resources/lang/ja/pagination.php 22 new file: resources/lang/ja/passwords.php 23 new file: resources/lang/ja/validation.php 24 new file: resources/views/auth/login.blade.php 25 new file: resources/views/auth/passwords/confirm.blade.php 26 new file: resources/views/auth/passwords/email.blade.php 27 new file: resources/views/auth/passwords/reset.blade.php 28 new file: resources/views/auth/register.blade.php 29 new file: resources/views/auth/verify.blade.php 30 new file: resources/views/home.blade.php 31 new file: resources/views/layouts/app.blade.php 32 modified: resources/views/welcome.blade.php 33 modified: routes/web.php 34 modified: webpack.mix.js 35
回答1件
あなたの回答
tips
プレビュー