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?










share|improve this question






















  • 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

















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?










share|improve this question






















  • 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















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?










share|improve this question













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






share|improve this question













share|improve this question











share|improve this question




share|improve this question










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 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


















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














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/).






share|improve this answer





















  • 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











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















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

























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/).






share|improve this answer





















  • 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















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/).






share|improve this answer





















  • 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













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/).






share|improve this answer












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/).







share|improve this answer












share|improve this answer



share|improve this answer










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


















  • 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


















draft saved

draft discarded




















































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.




draft saved


draft discarded














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





















































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







Popular posts from this blog

If I really need a card on my start hand, how many mulligans make sense? [duplicate]

Alcedinidae

Can an atomic nucleus contain both particles and antiparticles? [duplicate]