From 72cdf33a580299ffc8990bb5ec211162a0ee5d79 Mon Sep 17 00:00:00 2001 From: Jessica Nash Date: Mon, 15 Apr 2024 22:42:01 -0400 Subject: [PATCH] fixes commands for checkingout starting points --- _episodes/02-git.md | 1 + _episodes/03-github.md | 1 + _episodes/04-function-style.md | 1 + _episodes/05-package-structure.md | 1 + _episodes/06-type-hinting.md | 1 + _episodes/08-testing.md | 1 + _episodes/09-CI.md | 1 + _episodes/10-documentation.md | 1 + 8 files changed, 8 insertions(+) diff --git a/_episodes/02-git.md b/_episodes/02-git.md index 8fef628..49ac6e5 100644 --- a/_episodes/02-git.md +++ b/_episodes/02-git.md @@ -35,6 +35,7 @@ Alternatively, download the repository using the command line: ```{code-block} shell git clone https://github.com/MolSSI-Education/molecool.git +cd molecool git checkout git-start ``` ```` diff --git a/_episodes/03-github.md b/_episodes/03-github.md index 6d8a8de..664af95 100755 --- a/_episodes/03-github.md +++ b/_episodes/03-github.md @@ -28,6 +28,7 @@ Alternatively, download the repository using the command line: ````{tab-set-code} ```{code-block} shell git clone https://github.com/MolSSI-Education/molecool.git +cd molecool git checkout github-start ``` ```` diff --git a/_episodes/04-function-style.md b/_episodes/04-function-style.md index 3702a28..0f8e295 100644 --- a/_episodes/04-function-style.md +++ b/_episodes/04-function-style.md @@ -29,6 +29,7 @@ Alternatively, download the repository using the command line: ````{tab-set-code} ```{code-block} shell git clone https://github.com/MolSSI-Education/molecool.git +cd molecool git checkout python-coding-style-start ``` diff --git a/_episodes/05-package-structure.md b/_episodes/05-package-structure.md index 845ceef..7db235e 100755 --- a/_episodes/05-package-structure.md +++ b/_episodes/05-package-structure.md @@ -31,6 +31,7 @@ Alternatively, download the repository using the command line: ````{tab-set-code} ```{code-block} shell git clone https://github.com/MolSSI-Education/molecool.git +cd molecool git checkout deciding-package-structure-start ``` ```` diff --git a/_episodes/06-type-hinting.md b/_episodes/06-type-hinting.md index 845d44f..1a1c271 100644 --- a/_episodes/06-type-hinting.md +++ b/_episodes/06-type-hinting.md @@ -28,6 +28,7 @@ Alternatively, download the repository using the command line: ````{tab-set-code} ```{code-block} shell git clone https://github.com/MolSSI-Education/molecool.git +cd molecool git checkout python-type-hinting-start ``` ::: diff --git a/_episodes/08-testing.md b/_episodes/08-testing.md index c75dc04..61375d1 100644 --- a/_episodes/08-testing.md +++ b/_episodes/08-testing.md @@ -25,6 +25,7 @@ Alternatively, download the repository using the command line: ````{tab-set-code} ```{code-block} shell git clone https://github.com/MolSSI-Education/molecool.git +cd molecool git checkout python-testing-start ``` ```` diff --git a/_episodes/09-CI.md b/_episodes/09-CI.md index dec8bfe..cfe38e3 100644 --- a/_episodes/09-CI.md +++ b/_episodes/09-CI.md @@ -32,6 +32,7 @@ Alternatively, download the repository using the command line: ````{tab-set-code} ```{code-block} shell git clone https://github.com/MolSSI-Education/molecool.git +cd molecool git checkout CI-Github-actions-start ``` ```` diff --git a/_episodes/10-documentation.md b/_episodes/10-documentation.md index db1c848..e5af905 100644 --- a/_episodes/10-documentation.md +++ b/_episodes/10-documentation.md @@ -33,6 +33,7 @@ Alternatively, download the repository using the command line: ````{tab-set-code} ```{code-block} shell git clone https://github.com/MolSSI-Education/molecool.git +cd molecool git checkout package-docs-start ```