In this repository, there is a file called fairytale.md, which contains a to-be fairytale. There are no requirements on the story of the fairytales :-)
You work in a duo/trio.
For at least 3 times:
modify the fairytale it by adding/changing at most one sentence
share your code with the team using git push (see commands below)
update your code using git pull (see commands below)
fix merge conflicts in any way you like
Command-line commands
# Download the repository to your computer
git clone https://github.com/programming-formalisms/programming_formalisms_project_autumn_2023.git
# Go into the folder of that repository
cd programming_formalisms_project_autumn_2023
# Modify fairytale.md in one of many ways, such as:
notepad fairytale.md
emacs fairytale.md
vim fairytale.md
# When done:
# Staging all changed files
git add .
# Commit the staged files
git commit -m "Progress fairytale, progress #4"
# Upload
git push
# Update
git pull
Depends on:
In this repository, there is a file called
fairytale.md
, which contains a to-be fairytale. There are no requirements on the story of the fairytales :-)You work in a duo/trio.
For at least 3 times:
git push
(see commands below)git pull
(see commands below)Command-line commands