moved scripts to dotfiles repository

changed this repositories purpose to documentation only
This commit is contained in:
scbj
2024-11-11 09:25:44 +01:00
parent b4931aeef5
commit 7204e19f8a
12 changed files with 13 additions and 20 deletions

19
git.md Normal file
View File

@@ -0,0 +1,19 @@
# summary on some steps in the git workflow
## Table of contents
- [git submodule](#git-submodule)
## git submodule
```bash
# do it manually
git submodule init
git submodule update
# do it all at once
git clone --recurse-submodules
# if repo is already cloned
git submodule update --init --recursive
```