Next.jsでデータ作ったのでGit Hubに上げておこうと思ったのですが
git init後「$ git add .」打っても、処理が完了しません。
完了しない原因として何が考えられるでしょうか?
ディレクトリ中身
Next.jsプロジェクト
.git
.next
components
elements
next.config.js
node_modules
package-lock.json
package.json
pages
server.js
styles
打ったあとの画面に出てくる処理内容を提示しましょう
> git init後「$ git add .」打っても、処理が完了しません。
これです。
画面に全くなにもでないってことかな?
完了もなにも処理そのものが行われてないってことでしょうか
拝見しました。
$ git status の結果はどうなりますでしょうか?
$ git status
On branch master
No commits yet
Untracked files:
(use "git add <file>..." to include in what will be committed)
.next/
components/
elements/
next.config.js
node_modules/
package-lock.json
package.json
pages/
server.js
styles/
nothing added to commit but untracked files present (use "git add" to track)
ちなみにcreate-react-appで作成したプロジェクトなら
問題なくGit Hubにアップできました。
create-react-appプロジェクト概要
.git
.gitignore
build
node_modules
package-lock.json
package.json
public
README.md
src
回答1件
あなたの回答
tips
プレビュー