How to import existing file and folder structure? #132
Answered
by
redimp
DominikBritz
asked this question in
Q&A
-
I want to import my existing markdown files, which are structured in folders. How can I import them to the repository? |
Beta Was this translation helpful? Give feedback.
Answered by
redimp
Aug 26, 2024
Replies: 1 comment
-
Hey @DominikBritz, Yes! the most convenient way to do this is via git:
Another way would be to just copy the files into the directroy volume (when running in docker) and running |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
redimp
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hey @DominikBritz,
Yes! the most convenient way to do this is via git:
Settings > Application Preferences > Content end Editing Preferences > [x] Enable Git Webserver
[x] Retain page name case
, too.git clone https://otterwiki.example.com/.git
-- You find the url on your Settings page.git add
,git commit
and finallygit push
.Another way would be to just copy the files into the directroy volume (when running in docker) and running
git add
andgit commit
as user www-data/uid 33.