Is it possile to only push one file to Heroku, instead off all changed files?
Thanks…
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
No. Git tracks content not files, so you push all or nothing.
If there are files that you don’t want to ever push, add them to the
.gitignorefile.If you’ve already committed them however, you would still push them for that commit, but any later changes will be ignored.