-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path02_01_looking_history.txt
executable file
·38 lines (30 loc) · 1.09 KB
/
02_01_looking_history.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#========================================================================
# EPISODE - LOOKING AT HISTORY AND DIFFERENCES
# SECTION - LOOKING AT DIFFERENCES
#========================================================================
# LOOKING AT DIFFERENCES
# We should reference some previous work in the introduction section.
# We will make the required changes, save both files but will not commit
# the changes straight away.
# First we will cite previous studies in the introduction
#
# ** FILE EDITS **
#
# Add the following lines to the introduction in paper.md
#
# Jones et al (1998) conducted several studies in this region,
# but continental-scale measurements have not previously been made
#
# Then add the reference to references.txt
#
# ** FILE EDITS **
#
# Add the following lines to references.txt
#
# Jones et al 1998, Previous studies
#
# We can review the changes that we made using the `git diff` commnd:
git diff
# Now let's commit the change we made by adding the second reference:
git add paper.md references.txt
git commit -m "Cite previous work in introduction"