Skip to content

Latest commit

 

History

History
29 lines (23 loc) · 561 Bytes

File metadata and controls

29 lines (23 loc) · 561 Bytes

Advent of code

https://adventofcode.com/

inputs

The creator of Advent of Code does not want the inputs to be leaked. That's why they are in private git submodules.

git stuff

cloning repo

git clone --recursive git@github.com:DerEmperor/AdventOfCode.git

if you forgot the --recursive:

git submodule update --init --recursive

add submodule for new year

git submodule add git@github.com:DerEmperor/AdventOfCodeInputs2026.git ./2026/inputs

pull submodule

git submodule init
git submodule update