-
Notifications
You must be signed in to change notification settings - Fork 0
/
01_05_tracking_changes.txt
executable file
·46 lines (31 loc) · 1.04 KB
/
01_05_tracking_changes.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
38
39
40
41
42
43
#========================================================================
# EPISODE - TRACKING CHANGES WITH A LOCAL REPOSITORY
# SECTION - COMMIT CHANGES - 1/3
#========================================================================
# COMMIT CHANGES
# In order to tell Git to record our change, our new file,
# into the repository, we need to commit it:
git commit # Type a commit message: "Add title and authors"
# Save the commit message and close your text editor (gedit, notepad etc.)
# If we save our commit message and exit the editor, Git will
# now commit our file.
# Now, if we look at its status,
git status
# Our file is now in the repository.
# Now we will work a bit further on our paper.md file by writing
# the introduction section.
#
# ** FILE EDITS **
#
# Add the following lines of text to paper.md
#
# # Introduction
#
# We present aircraft measurements of BBOA over West Africa
#
# If we now run,
git status
# we see changes not staged for commit section and our file is
# marked as modified...
#
# - END -