无法将 IonicApp/www 推送到 GitHub

Cannot push IonicApp/www to GitHub

我使用常规做法将新初始化的 Ionic Apps 推送到 GitHub:

git add .
git commit -m ""
git push origin master

但在这之后我去检查我的 Ionic 项目,除了 www 文件夹之外所有的东西都在那里。谁能告诉我哪里出了问题?

有一个名为 .gitignore 的文件,它限制了 git

的内容
# Specifies intentionally untracked files to ignore when using Git
# http://git-scm.com/docs/gitignore

*~
*.sw[mnpcod]
*.log
*.tmp
*.tmp.*
log.txt
*.sublime-project
*.sublime-workspace
.vscode/
npm-debug.log*

.idea/
.ionic/
.sourcemaps/
.sass-cache/
.tmp/
.versions/
coverage/
dist/
node_modules/
tmp/
temp/
platforms/
plugins/
plugins/android.json
plugins/ios.json
www/
$RECYCLE.BIN/

.DS_Store
Thumbs.db
UserInterfaceState.xcuserstate

您可以编辑文件(删除 www/)。