From 57492a0cb4da5bc05cb4380351eadbb409700ce9 Mon Sep 17 00:00:00 2001 From: David Kilias Date: Wed, 22 Nov 2023 20:25:07 +0100 Subject: [PATCH 1/3] fix typo in linus' name --- presentation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/presentation.md b/presentation.md index 8cc1e4e..35593b4 100644 --- a/presentation.md +++ b/presentation.md @@ -17,7 +17,7 @@ https://github.com/24367dfa ## Was ist git? - VCS - Version Control System -- ist auf Linux Torvalds Mist gewachsen - für Entwicklung von Linux +- ist auf Linus Torvalds Mist gewachsen - für Entwicklung von Linux - vorallem für Source Code - funktioniert aber für jegliche plaintext files - inzwischen das am weitesten verbreitete VCS tool - Industriestandard From 8654df97fa30c485a20143f27b7ac09381793fa5 Mon Sep 17 00:00:00 2001 From: David Kilias Date: Wed, 22 Nov 2023 20:27:24 +0100 Subject: [PATCH 2/3] fix code in git remote slide --- presentation.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/presentation.md b/presentation.md index 35593b4..d0e7aa6 100644 --- a/presentation.md +++ b/presentation.md @@ -65,7 +65,8 @@ git branch -d my-test-branch ## Basics: `git remote` ```bash -git remote set-url origin git@github.com:24367dfa/my_awesome_repo.git +# TODO vorher in github repo anlegen +git remote add origin git@github.com:24367dfa/my_awesome_repo.git git push -u origin main ``` From 8b1bd176d6c3a393ced73039f47f8bf2ddba5000 Mon Sep 17 00:00:00 2001 From: David Kilias Date: Sun, 26 Nov 2023 19:35:26 +0100 Subject: [PATCH 3/3] fix: typos in presentation --- presentation.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/presentation.md b/presentation.md index d0e7aa6..80319aa 100644 --- a/presentation.md +++ b/presentation.md @@ -191,13 +191,13 @@ Einen Computer mit dem Repo definierte Dinge tun lassen - Schedule - Pull Request Events - Commit Events -- [gitub Doku: workflow triggers](https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows) +- [github Doku: workflow triggers](https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows) ## github: Actions Beispiele -- [Veröffentlichung dieser Präsentation](https://github.com/24367dfa/git-workshop/blob/main/.github/workflows/marp-to-pages.yml) -- [Build und Release von Docker Containern](https://github.com/FreifunkMD/md.freifunk.net-bind9/tree/main/.github/workflows) -- [Versand der Reminder fürs Plenum](https://github.com/netz39/istheuteplenum/blob/gh-pages/.github/workflows/meeting-reminder.yaml) +- (Veröffentlichung dieser Präsentation)[https://github.com/24367dfa/git-workshop/blob/main/.github/workflows/marp-to-pages.yml] +- (Build und Release von Docker Containern)[https://github.com/FreifunkMD/md.freifunk.net-bind9/tree/main/.github/workflows] +- (Versand der Reminder fürs Plenum)[https://github.com/netz39/istheuteplenum/blob/gh-pages/.github/workflows/meeting-reminder.yaml] ## Advanced: Conventional Commits