-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnotes.txt
77 lines (55 loc) · 2.65 KB
/
notes.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
https://github.com/Python-Markdown/markdown/wiki/Third-Party-Extensions
https://python-markdown.github.io/extensions/
pip install \
mkdocs \
mkdocs-material \
mkdocs-autolink-plugin \
mkdocs-minify-plugin \
pymdown-extensions \
mkdocs-git-revision-date-localized-plugin
Plugins
pip install mkdocs-minify-plugin
pip install mkdocs-redirects
pip install pillow cairosvg
pip install mkdocs-awesome-pages-plugin - https://github.com/lukasgeiter/mkdocs-awesome-pages-plugin
pip install mkdocs-open-in-new-tab (https://github.com/JakubAndrysek/mkdocs-open-in-new-tab)
add submodules
git submodule add https://github.com/dragoonDorise/EmuDeck.wiki.git emudeck-wiki
git submodule add https://github.com/SteamDeckHomebrew/decky-loader.git
git submodule add https://github.com/mikeroyal/Steam-Deck-Guide.git
git submodule add https://github.com/CryoByte33/steam-deck-utilities.git
git submodule add https://github.com/mikeroyal/Steam-Deck-Guide.git
git submodule add https://github.com/ayufan/steam-deck-tools.git
git submodule add https://github.com/n1ckoates/steamdeck-emulation.git
git submodule add https://github.com/CelesteHeartsong/SteamDeckAutomatedInstall.git
git submodule add https://github.com/ryanrudolfoba/SteamDeck-Clover-dualboot.git
git submodule add https://github.com/matthewbarreiro/awesome-steam-deck.git
git submodule add https://github.com/brenoprata10/steam-deck-romate.git
git submodule add https://github.com/wilco42/awesome-steamdeck.git
git submodule add https://github.com/XargonWan/RetroDECK.wiki.git
git submodule add https://github.com/baldsealion/Steam-Deck-Ultimate-Windows-Guide.git
git submodule add https://github.com/popsUlfr/steam-deck-tricks.git
git submodule add https://github.com/Matalus/steamdeck-tips.git
git submodule add https://gitlab.com/r-roms/megathread.git
git submodule add https://github.com/fmhy/FMHYedit.git
git submodule add https://github.com/Minibattle/WinDeckOS
git submodule add https://github.com/EmuDeck/emudeck.github.io.git
git submodule add https://github.com/c-pirataria/megathread.git megathread_br
git submodule update --remote --merge
# Get the submodule initially
git submodule add ssh://bla submodule_dir
git submodule init
# Time passes, submodule upstream is updated
# and you now want to update
# Change to the submodule directory
cd submodule_dir
# Checkout desired branch
git checkout master
# Update
git pull
# Get back to your project root
cd ..
# Now the submodules are in the state you want, so
git commit -am "Pulled down update to submodule_dir"
Or, if you're a busy person:
git submodule foreach git pull origin master