From 6d3dd67e22b222ce4bf9bf8644f00805c40d06df Mon Sep 17 00:00:00 2001 From: ivuorinen Date: Mon, 2 Sep 2024 00:16:44 +0000 Subject: [PATCH] Update cheatsheets --- tldr/codecrafters | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 tldr/codecrafters diff --git a/tldr/codecrafters b/tldr/codecrafters new file mode 100644 index 00000000..7a4808a9 --- /dev/null +++ b/tldr/codecrafters @@ -0,0 +1,21 @@ +--- +syntax: markdown +tags: [tldr, common] +source: https://github.com/tldr-pages/tldr.git +--- +# codecrafters + +> Practice writing complex software. +> More information: . + +- Run tests without committing changes: + +`codecrafters test` + +- Run tests for all previous stages and the current stage without committing changes: + +`codecrafters test --previous` + +- Commit changes and submit, to move to the next stage: + +`codecrafters submit`