Skip to content

Commit fbbd73d

Browse files
jupyter vsnctl idcs
1 parent 2cabe8e commit fbbd73d

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

source/jupyter.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -377,7 +377,7 @@ right-clicking on the file's name in the Jupyter file explorer, selecting
377377
**Open with**, and then selecting **Editor** (Figure \@ref(fig:open-data-w-editor-1)).
378378
Suppose you do not specify to open
379379
the data file with an editor. In that case, Jupyter will render a nice table
380-
for you, and you will not be able to see the column delimiters, and therefore
380+
for you, and you will not be able to see the column delimiters, \index{delimiter} and therefore
381381
you will not know which function to use, nor which arguments to use and values
382382
to specify for them.
383383

source/version-control.Rmd

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,7 @@ a workspace on a server (e.g., JupyterHub).
137137
The other copy is typically stored in a repository hosting service (e.g., GitHub), where
138138
we can easily share it with our collaborators.
139139
This copy is commonly referred to as \index{repository!remote} the **remote repository**.
140+
\index{repository|see{version control}}
140141

141142
```{r vc1-no-changes, fig.cap = 'Schematic of local and remote version control repositories.', fig.retina = 2, out.width="100%"}
142143
image_read("img/version-control/vc1-no-changes.png") |>
@@ -200,10 +201,10 @@ image_read("img/version-control/vc2-changes.png") |>
200201
```
201202

202203
Once you reach a point that you want Git to keep a record
203-
of the current version of your work, you need to commit
204+
of the current version of your work, you need to **commit** \index{git!commit}
204205
(i.e., snapshot) your changes. A prerequisite to this is telling Git which
205206
files should be included in that snapshot. We call this step **adding** the
206-
files to the **staging area**. \index{git!add, staging area}
207+
files to the **staging area**. \index{git!add, staging area}\index{staging area|see{git}}
207208
Note that the staging area is not a real physical location on your computer;
208209
it is instead a conceptual placeholder for these files until they are committed.
209210
The benefit of the Git version control system using a staging area is that you
@@ -309,7 +310,7 @@ Repositories can be set up with a variety of configurations, including a name,
309310
optional description, and the inclusion (or not) of several template files.
310311
One of the most important configuration items to choose is the visibility to the outside world,
311312
either public or private. *Public* repositories \index{repository!public} can be viewed by anyone.
312-
*Private* repositories can be viewed by only you. Both public and private repositories
313+
*Private* repositories \index{repository!private} can be viewed by only you. Both public and private repositories
313314
are only editable by you, but you can change that by giving access to other collaborators.
314315

315316
To get started with a *public* repository having a template `README.md` file, take the
@@ -530,9 +531,6 @@ image_read("img/version-control/generate-pat_03.png")
530531

531532
### Cloning a repository using Jupyter
532533

533-
<!--Now that we have everything we need for authentication,
534-
the next step is -->
535-
536534
*Cloning* a \index{git!clone} remote repository from GitHub
537535
to create a local repository results in a
538536
copy that knows where it was obtained from so that it knows where to send/receive

0 commit comments

Comments
 (0)