Skip to content

Latest commit

 

History

History
53 lines (35 loc) · 895 Bytes

README_render_fennica.md

File metadata and controls

53 lines (35 loc) · 895 Bytes

Steps to render fennica quarto book

To work with the fennica quarto book

1. clone the repository using the command

git clone https://github.com/fennicahub/fennica.git

2. Open it with R-studio and at the terminal of R-studio change the path to inst/examples and render the book using

quarto render

to render a single file

quarto render author_name.qmd

After rendering it locally and everything goes well you can push the changes as follows

3.First add

git add .

4.commit it as follows

git commit -am "commit message"

5.push it to the branch

git push origin master

If there has been changes/updates at the git repository first fetch the changes before commit using

git fetch --all

and then you need to merge it with your local using

git merge origin master