From 1b575b53a3c02a4c5466ae0451cbac1ae63871ff Mon Sep 17 00:00:00 2001 From: Alex Dastous <47249340+po09i@users.noreply.github.com> Date: Fri, 14 Jan 2022 15:29:27 -0500 Subject: [PATCH 1/3] Update download procedure --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 82c3937..6acf882 100644 --- a/README.md +++ b/README.md @@ -24,10 +24,11 @@ Wait for Binder to finish building the environment (can take 5-10 minutes), then #### 2) Clone this GitHub repository on your computer: ```bash git clone https://github.com/jcohenadad/GBM8378.git +git checkout r20220114 cd GBM8378 ``` - For Windows user, you might need to [install git](https://git-scm.com/downloads) prior to clone the repository. -- If git clone is not working, you can download the zipped version of the repository and unzip it locally on your computer. +- If git clone is not working, you can download the most [recent release](https://github.com/jcohenadad/GBM8378/releases) of the repository on your computer. #### 3) Once miniconda is installed and the repository is cloned, run the following commands in order to create your virtual environment and start the jupyter notebook: From 7adf549cda13ce542540951250d905878fe39774 Mon Sep 17 00:00:00 2001 From: Alex Dastous <47249340+po09i@users.noreply.github.com> Date: Fri, 14 Jan 2022 15:46:26 -0500 Subject: [PATCH 2/3] Remove static name and add dynamic release name --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6acf882..abfe451 100644 --- a/README.md +++ b/README.md @@ -21,11 +21,11 @@ Wait for Binder to finish building the environment (can take 5-10 minutes), then #### 1) You will need to [install miniconda](https://docs.conda.io/en/latest/miniconda.html) in order to set-up your python environment. -#### 2) Clone this GitHub repository on your computer: +#### 2) Clone this GitHub repository on your computer and select the latest release: ```bash git clone https://github.com/jcohenadad/GBM8378.git -git checkout r20220114 cd GBM8378 +git checkout $(git describe --tags `git rev-list --tags --max-count=1`) ``` - For Windows user, you might need to [install git](https://git-scm.com/downloads) prior to clone the repository. - If git clone is not working, you can download the most [recent release](https://github.com/jcohenadad/GBM8378/releases) of the repository on your computer. From 8525f1172752006a1911e95c05209dc990fa3bfc Mon Sep 17 00:00:00 2001 From: Alex Dastous <47249340+po09i@users.noreply.github.com> Date: Fri, 14 Jan 2022 16:33:30 -0500 Subject: [PATCH 3/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index abfe451..b5df78e 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ Wait for Binder to finish building the environment (can take 5-10 minutes), then ```bash git clone https://github.com/jcohenadad/GBM8378.git cd GBM8378 -git checkout $(git describe --tags `git rev-list --tags --max-count=1`) +git checkout r20220114 ``` - For Windows user, you might need to [install git](https://git-scm.com/downloads) prior to clone the repository. - If git clone is not working, you can download the most [recent release](https://github.com/jcohenadad/GBM8378/releases) of the repository on your computer.