commit 3fe4ed47ca76dd1c1964f12af70d3b90086d600e Author: Kurs Kursesen Date: Thu Sep 26 15:02:28 2024 +0200 Init diff --git a/README.md b/README.md new file mode 100644 index 0000000..65a128a --- /dev/null +++ b/README.md @@ -0,0 +1,17 @@ +# Gitkurs23 + +### [Kommandolinje "Cheat sheet"](https://education.github.com/git-cheat-sheet-education.pdf) + +### "Workshop" + +1. Klon dette repoet +1. Lag en ny branch +1. Lag filen `deltakere/dittnavn` +1. Sjekk status (`git status`) +1. Stage filen +1. Sjekk status (`git status`) +1. Commit endringen +1. Se på endringene (For eksempel `git log` og `git show`) +1. Push til remote +1. Lag en Merge Request + diff --git a/kode/hello.py b/kode/hello.py new file mode 100644 index 0000000..a767990 --- /dev/null +++ b/kode/hello.py @@ -0,0 +1,8 @@ +import os + +print("Hello World!") + +files = os.listdir("deltakere") +for f in files: + print("Hello - ", f) +