programming-formalisms / programming_formalisms_project_autumn_2023

The Programming Formalisms learners project of autumn 2023
https://github.com/UPPMAX/programming_formalisms
GNU General Public License v3.0
0 stars 1 forks source link

Fairytale: basic git workflow #4

Closed richelbilderbeek closed 11 months ago

richelbilderbeek commented 11 months ago

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:

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
richelbilderbeek commented 11 months ago

Not needed with this team :-)