You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
### Clone your repository in your scratch directory
127
+
### Clone your repository in your home directory
128
128
129
129
We strongly suggest having two instances of your project repository.
130
130
@@ -138,34 +138,25 @@ This guide includes the steps to do it, and there are general details in `data/R
138
138
```bash
139
139
# SSH to a cluster.
140
140
ssh clariden
141
-
cd$SCRATCH
142
141
# Clone the repo twice with name dev and run (if you already have one, mv it to a different name)
143
-
mkdir template-project-name
144
-
git clone <HTTPS/SSH> template-project-name/dev
145
-
git clone <HTTPS/SSH> template-project-name/run
142
+
mkdir -p $HOME/projects/template-project-name
143
+
cd$HOME/projects/template-project-name
144
+
git clone <HTTPS/SSH> dev
145
+
git clone <HTTPS/SSH> run
146
146
```
147
147
148
148
The rest of the instructions should be performed on the cluster from the dev instance of the project.
149
149
```bash
150
-
cd$SCRATCH/template-project-name/dev/
150
+
cd dev
151
151
# It may also be useful to open a remote code editor on a login node to view the project. (The remote development will happen in another IDE in the container.)
152
152
# Push what you did on your local machine so far (change project name etc) and pull it on the cluster.
0 commit comments