Init
This commit is contained in:
commit
3fe4ed47ca
|
@ -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
|
||||||
|
|
|
@ -0,0 +1,8 @@
|
||||||
|
import os
|
||||||
|
|
||||||
|
print("Hello World!")
|
||||||
|
|
||||||
|
files = os.listdir("deltakere")
|
||||||
|
for f in files:
|
||||||
|
print("Hello - ", f)
|
||||||
|
|
Loading…
Reference in New Issue