We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5404f40 commit 41e74a4Copy full SHA for 41e74a4
README.md
@@ -168,7 +168,17 @@ access to the decavision-doc app.
168
```
169
git subtree push --prefix docs/_build/html heroku master
170
171
- This has to be done from the main directory and it pushes only the code in the docs/_build/html subfolder to heroku.
+ This has to be done from the main directory and it pushes only the code in the docs/_build/html subfolder to heroku. If it fails you can try
172
+ ```
173
+ cd docs/_build/html
174
+ git init
175
+ git add .
176
+ git commit -am "deploy"
177
+ heroku git:remote -a decavision-doc
178
+ git push --force heroku master
179
+ rm -rf .git
180
+ cd ../../..
181
182
183
### To do
184
0 commit comments