Exercise 1: First file edit#
Let’s start with the most basic edit: add some text to a file and see that the website is updated.
Can you add some content to the intro page?
Go to the the file
book/intro.md
on your GitHub repository (https://github.com/<your_username>/<your_repo_name>
) -Code
-Book
-intro.md
-Edit this file
Add some text. Feeling brave? Have a look at the MyST cheat sheet. Don’t worry if that feels daunting, there will be exercises on this!
Click
Commit changes
Add a message and description of your change. With this
commit
you save your changes to the git-timeline. Any commit can always be reverted. Therefore, it’s useful to shortly explain what is included in your commit. Later on, you’ll make commits which may contain changes to many different files. In that case, a descriptive commit message and description is even more useful!Select
Commit directly to the main branch
(this adds your change your change to the default version instead of making a new one)Click
Commit changes
.Go to
Actions
- The most recent workflow runUpdate intro.md / the commit message of the commit you just made
- Wait for it to finish - In the summary, click on the link of your book shown in the tableBranches deployed
and underPrimary book at root
Do you see your change? If you don’t see it click
CTRL
+F5
/Control
+F5
to refresh the page (your browser keeps a cached version of website you recently visit, but we actually want the most up-to-date version!).
Check your understanding
Before moving on to the next exercise, make sure you understand the following:
Where are the contents of the book stored?
How can you edit a single file via the GitHub browser interface?
What is a commit and what role does it play in the editing process?
Given a specific GitHub repository, can you determine the URL of the book website?
How can you view the changes you made to the book?
What is the purpose of a commit message and description?