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: workflow with main, develop and topic branches #5

Open richelbilderbeek opened 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.

First:

For at least 2 times:

At end:

Command-line commands

See basic git workflow #4

# Change to your branch
git checkout richel
git pull

# Merge develop to the branch you are on
git merge develop

# Basic git workflow
git add .
git commit -m "Progress #5"
git push

# Change to the develop branch
git checkout develop
git pull

# Merge your branch to develop
git merge richel
richelbilderbeek commented 11 months ago

Not needed with this team :-)