Cannot push IonicApp/www to GitHub
up vote
1
down vote
favorite
I pushed my newly initialized Ionic Apps to GitHub using the common practice:
git add .
git commit -m ""
git push origin master
But after this I went to check my Ionic project, everything was there except www
folder. Can anyone tell me what went wrong?
ionic-framework ionic3 hybrid-mobile-app hybrid multi-device-hybrid-apps
add a comment |
up vote
1
down vote
favorite
I pushed my newly initialized Ionic Apps to GitHub using the common practice:
git add .
git commit -m ""
git push origin master
But after this I went to check my Ionic project, everything was there except www
folder. Can anyone tell me what went wrong?
ionic-framework ionic3 hybrid-mobile-app hybrid multi-device-hybrid-apps
check your.gitignore
file, this file contains the path of folders/files that shouldn't be on the github. Open this file usingnano .gitignore
, its in the same folder where you initialized git
– Abdul Basit
Nov 19 at 7:17
add a comment |
up vote
1
down vote
favorite
up vote
1
down vote
favorite
I pushed my newly initialized Ionic Apps to GitHub using the common practice:
git add .
git commit -m ""
git push origin master
But after this I went to check my Ionic project, everything was there except www
folder. Can anyone tell me what went wrong?
ionic-framework ionic3 hybrid-mobile-app hybrid multi-device-hybrid-apps
I pushed my newly initialized Ionic Apps to GitHub using the common practice:
git add .
git commit -m ""
git push origin master
But after this I went to check my Ionic project, everything was there except www
folder. Can anyone tell me what went wrong?
ionic-framework ionic3 hybrid-mobile-app hybrid multi-device-hybrid-apps
ionic-framework ionic3 hybrid-mobile-app hybrid multi-device-hybrid-apps
asked Nov 19 at 7:10
Danni
407
407
check your.gitignore
file, this file contains the path of folders/files that shouldn't be on the github. Open this file usingnano .gitignore
, its in the same folder where you initialized git
– Abdul Basit
Nov 19 at 7:17
add a comment |
check your.gitignore
file, this file contains the path of folders/files that shouldn't be on the github. Open this file usingnano .gitignore
, its in the same folder where you initialized git
– Abdul Basit
Nov 19 at 7:17
check your
.gitignore
file, this file contains the path of folders/files that shouldn't be on the github. Open this file using nano .gitignore
, its in the same folder where you initialized git– Abdul Basit
Nov 19 at 7:17
check your
.gitignore
file, this file contains the path of folders/files that shouldn't be on the github. Open this file using nano .gitignore
, its in the same folder where you initialized git– Abdul Basit
Nov 19 at 7:17
add a comment |
1 Answer
1
active
oldest
votes
up vote
2
down vote
accepted
There is a file named .gitignore, which limits the content for 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
you could edit the file(delete www/).
Thank you for ur answer! I wanna know the best practice here is to upload www to GitHub or not? And also about other folders that not uploaded? (I have a small project where I collaborate with around 3 people so could really use some advice.) Thanks a lot!
– Danni
Nov 19 at 7:22
@Danni www folder generated after build, so no need for including it, I use default .gitignore configuration.
– navylover
Nov 19 at 7:39
Usually you don't commit files and folders that you can re-create or are environment specific, e.g. www folder, node_modules folder, config files, temp files, cached files. If you are developing a PWA app, you only have to put www folder to the web server. You can deploy this folder using deployment tools.
– Sašo Kovačič
Nov 19 at 7:48
@navylover ok thanks!
– Danni
Nov 19 at 7:49
@SašoKovačič Thanks I understand now!
– Danni
Nov 19 at 7:50
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
2
down vote
accepted
There is a file named .gitignore, which limits the content for 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
you could edit the file(delete www/).
Thank you for ur answer! I wanna know the best practice here is to upload www to GitHub or not? And also about other folders that not uploaded? (I have a small project where I collaborate with around 3 people so could really use some advice.) Thanks a lot!
– Danni
Nov 19 at 7:22
@Danni www folder generated after build, so no need for including it, I use default .gitignore configuration.
– navylover
Nov 19 at 7:39
Usually you don't commit files and folders that you can re-create or are environment specific, e.g. www folder, node_modules folder, config files, temp files, cached files. If you are developing a PWA app, you only have to put www folder to the web server. You can deploy this folder using deployment tools.
– Sašo Kovačič
Nov 19 at 7:48
@navylover ok thanks!
– Danni
Nov 19 at 7:49
@SašoKovačič Thanks I understand now!
– Danni
Nov 19 at 7:50
add a comment |
up vote
2
down vote
accepted
There is a file named .gitignore, which limits the content for 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
you could edit the file(delete www/).
Thank you for ur answer! I wanna know the best practice here is to upload www to GitHub or not? And also about other folders that not uploaded? (I have a small project where I collaborate with around 3 people so could really use some advice.) Thanks a lot!
– Danni
Nov 19 at 7:22
@Danni www folder generated after build, so no need for including it, I use default .gitignore configuration.
– navylover
Nov 19 at 7:39
Usually you don't commit files and folders that you can re-create or are environment specific, e.g. www folder, node_modules folder, config files, temp files, cached files. If you are developing a PWA app, you only have to put www folder to the web server. You can deploy this folder using deployment tools.
– Sašo Kovačič
Nov 19 at 7:48
@navylover ok thanks!
– Danni
Nov 19 at 7:49
@SašoKovačič Thanks I understand now!
– Danni
Nov 19 at 7:50
add a comment |
up vote
2
down vote
accepted
up vote
2
down vote
accepted
There is a file named .gitignore, which limits the content for 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
you could edit the file(delete www/).
There is a file named .gitignore, which limits the content for 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
you could edit the file(delete www/).
answered Nov 19 at 7:17
navylover
2,89621117
2,89621117
Thank you for ur answer! I wanna know the best practice here is to upload www to GitHub or not? And also about other folders that not uploaded? (I have a small project where I collaborate with around 3 people so could really use some advice.) Thanks a lot!
– Danni
Nov 19 at 7:22
@Danni www folder generated after build, so no need for including it, I use default .gitignore configuration.
– navylover
Nov 19 at 7:39
Usually you don't commit files and folders that you can re-create or are environment specific, e.g. www folder, node_modules folder, config files, temp files, cached files. If you are developing a PWA app, you only have to put www folder to the web server. You can deploy this folder using deployment tools.
– Sašo Kovačič
Nov 19 at 7:48
@navylover ok thanks!
– Danni
Nov 19 at 7:49
@SašoKovačič Thanks I understand now!
– Danni
Nov 19 at 7:50
add a comment |
Thank you for ur answer! I wanna know the best practice here is to upload www to GitHub or not? And also about other folders that not uploaded? (I have a small project where I collaborate with around 3 people so could really use some advice.) Thanks a lot!
– Danni
Nov 19 at 7:22
@Danni www folder generated after build, so no need for including it, I use default .gitignore configuration.
– navylover
Nov 19 at 7:39
Usually you don't commit files and folders that you can re-create or are environment specific, e.g. www folder, node_modules folder, config files, temp files, cached files. If you are developing a PWA app, you only have to put www folder to the web server. You can deploy this folder using deployment tools.
– Sašo Kovačič
Nov 19 at 7:48
@navylover ok thanks!
– Danni
Nov 19 at 7:49
@SašoKovačič Thanks I understand now!
– Danni
Nov 19 at 7:50
Thank you for ur answer! I wanna know the best practice here is to upload www to GitHub or not? And also about other folders that not uploaded? (I have a small project where I collaborate with around 3 people so could really use some advice.) Thanks a lot!
– Danni
Nov 19 at 7:22
Thank you for ur answer! I wanna know the best practice here is to upload www to GitHub or not? And also about other folders that not uploaded? (I have a small project where I collaborate with around 3 people so could really use some advice.) Thanks a lot!
– Danni
Nov 19 at 7:22
@Danni www folder generated after build, so no need for including it, I use default .gitignore configuration.
– navylover
Nov 19 at 7:39
@Danni www folder generated after build, so no need for including it, I use default .gitignore configuration.
– navylover
Nov 19 at 7:39
Usually you don't commit files and folders that you can re-create or are environment specific, e.g. www folder, node_modules folder, config files, temp files, cached files. If you are developing a PWA app, you only have to put www folder to the web server. You can deploy this folder using deployment tools.
– Sašo Kovačič
Nov 19 at 7:48
Usually you don't commit files and folders that you can re-create or are environment specific, e.g. www folder, node_modules folder, config files, temp files, cached files. If you are developing a PWA app, you only have to put www folder to the web server. You can deploy this folder using deployment tools.
– Sašo Kovačič
Nov 19 at 7:48
@navylover ok thanks!
– Danni
Nov 19 at 7:49
@navylover ok thanks!
– Danni
Nov 19 at 7:49
@SašoKovačič Thanks I understand now!
– Danni
Nov 19 at 7:50
@SašoKovačič Thanks I understand now!
– Danni
Nov 19 at 7:50
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53369849%2fcannot-push-ionicapp-www-to-github%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
check your
.gitignore
file, this file contains the path of folders/files that shouldn't be on the github. Open this file usingnano .gitignore
, its in the same folder where you initialized git– Abdul Basit
Nov 19 at 7:17