From 203a88c7a2b3e5a22bd435b14f14c855e1a29bfa Mon Sep 17 00:00:00 2001 From: Adam French Date: Wed, 18 Feb 2026 12:46:43 +0000 Subject: [PATCH] adding readme --- readme.md | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 readme.md diff --git a/readme.md b/readme.md new file mode 100644 index 0000000..44333e2 --- /dev/null +++ b/readme.md @@ -0,0 +1,30 @@ +# Goals + +The purpose of this command will be to walk through code tutorials + +It will be essentially the same as git, however without branches. + +Through a series of commits, you can walk through code changes and see what has changed (like git diff) + +It will work as such + +```` +```sh +# When creating a tour +tour init -m "After running *npm init* we get our template" + +tour commit file1.sh file2.sh -m "In file1 we add ..., in file2 we add ..." + +tour end -m "Now your tour is complete!" + +# EXTRAS: +tour author -> Add information about the author if there are questions + + +tour start +New files: +file1.sh +file2.sh + +``` +````