Remotes in GitHub
-Last updated on 2024-07-16 | +
Last updated on 2024-08-10 | Edit this page
@@ -709,11 +709,11 @@OUTPUT<
Now, going to GitHub.com, click on your profile icon in the top right corner to get the drop-down menu. Click “Settings,” then on the settings -page, click “SSH and GPG keys,” on the left side “Account settings” -menu. Click the “New SSH key” button on the right side. Now, you can add -the title (Dracula uses the title “Vlad’s Lab Laptop” so he can remember -where the original key pair files are located), paste your SSH key into -the field, and click the “Add SSH key” to complete the setup.
+page, click “SSH and GPG keys,” on the left side “Access” menu. Click +the “New SSH key” button on the right side. Now, you can add the title +(Dracula uses the title “Vlad’s Lab Laptop” so he can remember where the +original key pair files are located), paste your SSH key into the field, +and click the “Add SSH key” to complete the setup.Now that we’ve set that up, let’s check our authentication again from the command line.
GitHub GUI
Show me the solution
-
+
The left-most button (with the picture of a clipboard) copies the
full identifier of the commit to the clipboard. In the shell,
@@ -933,7 +933,7 @@
GitHub Timestamp
Show me the solution
-
+
GitHub displays timestamps in a human readable relative format
(i.e. “22 hours ago” or “three weeks ago”). However, if you hover over
@@ -961,7 +961,7 @@
Push vs. Commit
Show me the solution
-
+
When we push changes, we’re interacting with a remote repository to
update it with the changes we’ve made locally (often this corresponds to
@@ -991,7 +991,7 @@
GitHub License and README files
Show me the solution
-
+
In this case, we’d see a merge conflict due to unrelated histories.
When GitHub creates a README.md file, it performs a commit in the remote
@@ -1117,7 +1117,7 @@
Key Points
Solution to Challenge
-
+
This can be done in Rstudio:
diff --git a/aio.html b/aio.html
index 687ad8dff1..18dcc19189 100644
--- a/aio.html
+++ b/aio.html
@@ -1100,7 +1100,7 @@ BASH
Show me the solution
-
+
No. Dracula does not need to make the moons
subdirectory
a Git repository because the planets
repository can track
@@ -1149,7 +1149,7 @@
Correcting git init
Mistakes
Solution – USE WITH CAUTION!
-
+
Background
@@ -1872,7 +1872,7 @@ Choosing a Commit Message
Show me the solution
-
+
Answer 1 is not descriptive enough, and the purpose of the commit is
unclear; and answer 2 is redundant to using “git diff” to see what
@@ -1924,7 +1924,7 @@
BASH
Show me the solution
-
+
- Would only create a commit if files have already been staged.
@@ -1964,7 +1964,7 @@ Committing Multiple Files
Show me the solution
-
+
The output below from cat mars.txt
reflects only content
added during this exercise. Your output may vary.
@@ -2051,7 +2051,7 @@
-
+
If needed, move out of the planets
folder:
@@ -2438,7 +2438,7 @@ Recovering Older Versions of a File
Show me the solution
-
+
The answer is (5)-Both 2 and 4.
The restore
command restores files from the repository,
@@ -2494,7 +2494,7 @@
Reverting a Commit
Show me the solution
-
+
The command git log
lists project history with commit
IDs.
@@ -2557,7 +2557,7 @@ OUTPUT<
-
+
The answer is 2.
The command git add venus.txt
places the current version
@@ -2621,7 +2621,7 @@
Getting Rid of Staged Changes
Show me the solution
-
+
After adding a change, git restore
can not be used
directly. Let’s look at the output of git status
:
@@ -2924,7 +2924,7 @@ BASH
Show me the solution
-
+
If you only want to ignore the contents of
results/plots
, you can change your .gitignore
@@ -2965,7 +2965,7 @@
Including Specific Files
Show me the solution
-
+
You would add the following two lines to your .gitignore:
@@ -3014,7 +3014,7 @@ BASH
Show me the solution
-
+
If you want to ignore the contents of results/
but not
those of results/data/
, you can change your
@@ -3062,7 +3062,7 @@
BASH
Show me the solution
-
+
Appending results/data/position/gps/*.csv
will match
every file in results/data/position/gps
that ends with
@@ -3100,7 +3100,7 @@
BASH
Show me the solution
-
+
In the .gitignore
file, write:
@@ -3139,7 +3139,7 @@ BASH
Show me the solution
-
+
The !
modifier will negate an entry from a previously
defined ignore pattern. Because the !*.csv
entry negates
@@ -3183,7 +3183,7 @@
Log Files
Show me the solution
-
+
- append either
log_*
or log*
as a new entry
@@ -3211,7 +3211,7 @@ Key PointsContent from Remotes in GitHub
-Last updated on 2024-07-16 |
+
Last updated on 2024-08-10 |
Edit this page
@@ -3535,11 +3535,11 @@ OUTPUT<
Now, going to GitHub.com, click on your profile icon in the top right
corner to get the drop-down menu. Click “Settings,” then on the settings
-page, click “SSH and GPG keys,” on the left side “Account settings”
-menu. Click the “New SSH key” button on the right side. Now, you can add
-the title (Dracula uses the title “Vlad’s Lab Laptop” so he can remember
-where the original key pair files are located), paste your SSH key into
-the field, and click the “Add SSH key” to complete the setup.
+page, click “SSH and GPG keys,” on the left side “Access” menu. Click
+the “New SSH key” button on the right side. Now, you can add the title
+(Dracula uses the title “Vlad’s Lab Laptop” so he can remember where the
+original key pair files are located), paste your SSH key into the field,
+and click the “Add SSH key” to complete the setup.
Now that we’ve set that up, let’s check our authentication again from
the command line.
@@ -3700,7 +3700,7 @@ GitHub GUI
Show me the solution
-
+
The left-most button (with the picture of a clipboard) copies the
full identifier of the commit to the clipboard. In the shell,
@@ -3761,7 +3761,7 @@
GitHub Timestamp
Show me the solution
-
+
GitHub displays timestamps in a human readable relative format
(i.e. “22 hours ago” or “three weeks ago”). However, if you hover over
@@ -3789,7 +3789,7 @@
Push vs. Commit
Show me the solution
-
+
When we push changes, we’re interacting with a remote repository to
update it with the changes we’ve made locally (often this corresponds to
@@ -3819,7 +3819,7 @@
GitHub License and README files
Show me the solution
-
+
In this case, we’d see a merge conflict due to unrelated histories.
When GitHub creates a README.md file, it performs a commit in the remote
@@ -5614,7 +5614,7 @@
Solution to Challenge
-
+
This can be done in Rstudio:
diff --git a/instructor/03-create.html b/instructor/03-create.html
index da5336b95a..91f06bc3ca 100644
--- a/instructor/03-create.html
+++ b/instructor/03-create.html
@@ -535,7 +535,7 @@ BASH
Show me the solution
-
+
No. Dracula does not need to make the moons
subdirectory
a Git repository because the planets
repository can track
@@ -584,7 +584,7 @@
Correcting git init
Mistakes
Solution – USE WITH CAUTION!
-
+
Background
diff --git a/instructor/04-changes.html b/instructor/04-changes.html
index 425a199885..5941b94eb8 100644
--- a/instructor/04-changes.html
+++ b/instructor/04-changes.html
@@ -1039,7 +1039,7 @@ Choosing a Commit Message
Show me the solution
-
+
Answer 1 is not descriptive enough, and the purpose of the commit is
unclear; and answer 2 is redundant to using “git diff” to see what
@@ -1089,7 +1089,7 @@
BASH
Show me the solution
-
+
- Would only create a commit if files have already been staged.
- Would try to create a new repository.
@@ -1125,7 +1125,7 @@ Committing Multiple Files
Show me the solution
-
+
The output below from cat mars.txt
reflects only content
added during this exercise. Your output may vary.
@@ -1210,7 +1210,7 @@
-
+
If needed, move out of the planets
folder:
diff --git a/instructor/05-history.html b/instructor/05-history.html
index 022c1cd69e..7b5696df67 100644
--- a/instructor/05-history.html
+++ b/instructor/05-history.html
@@ -703,7 +703,7 @@ Recovering Older Versions of a File
Show me the solution
-
+
The left-most button (with the picture of a clipboard) copies the full identifier of the commit to the clipboard. In the shell, @@ -933,7 +933,7 @@
GitHub Timestamp
Show me the solution
-
+
GitHub displays timestamps in a human readable relative format
(i.e. “22 hours ago” or “three weeks ago”). However, if you hover over
@@ -961,7 +961,7 @@
Push vs. Commit
Show me the solution
-
+
When we push changes, we’re interacting with a remote repository to
update it with the changes we’ve made locally (often this corresponds to
@@ -991,7 +991,7 @@
GitHub License and README files
Show me the solution
-
+
In this case, we’d see a merge conflict due to unrelated histories.
When GitHub creates a README.md file, it performs a commit in the remote
@@ -1117,7 +1117,7 @@
Key Points
Solution to Challenge
-
+
This can be done in Rstudio:
diff --git a/aio.html b/aio.html
index 687ad8dff1..18dcc19189 100644
--- a/aio.html
+++ b/aio.html
@@ -1100,7 +1100,7 @@ BASH
Show me the solution
-
+
No. Dracula does not need to make the moons
subdirectory
a Git repository because the planets
repository can track
@@ -1149,7 +1149,7 @@
Correcting git init
Mistakes
Solution – USE WITH CAUTION!
-
+
Background
@@ -1872,7 +1872,7 @@ Choosing a Commit Message
Show me the solution
-
+
Answer 1 is not descriptive enough, and the purpose of the commit is
unclear; and answer 2 is redundant to using “git diff” to see what
@@ -1924,7 +1924,7 @@
BASH
Show me the solution
-
+
- Would only create a commit if files have already been staged.
@@ -1964,7 +1964,7 @@ Committing Multiple Files
Show me the solution
-
+
The output below from cat mars.txt
reflects only content
added during this exercise. Your output may vary.
@@ -2051,7 +2051,7 @@
-
+
If needed, move out of the planets
folder:
@@ -2438,7 +2438,7 @@ Recovering Older Versions of a File
Show me the solution
-
+
The answer is (5)-Both 2 and 4.
The restore
command restores files from the repository,
@@ -2494,7 +2494,7 @@
Reverting a Commit
Show me the solution
-
+
The command git log
lists project history with commit
IDs.
@@ -2557,7 +2557,7 @@ OUTPUT<
-
+
The answer is 2.
The command git add venus.txt
places the current version
@@ -2621,7 +2621,7 @@
Getting Rid of Staged Changes
Show me the solution
-
+
After adding a change, git restore
can not be used
directly. Let’s look at the output of git status
:
@@ -2924,7 +2924,7 @@ BASH
Show me the solution
-
+
If you only want to ignore the contents of
results/plots
, you can change your .gitignore
@@ -2965,7 +2965,7 @@
Including Specific Files
Show me the solution
-
+
You would add the following two lines to your .gitignore:
@@ -3014,7 +3014,7 @@ BASH
Show me the solution
-
+
If you want to ignore the contents of results/
but not
those of results/data/
, you can change your
@@ -3062,7 +3062,7 @@
BASH
Show me the solution
-
+
Appending results/data/position/gps/*.csv
will match
every file in results/data/position/gps
that ends with
@@ -3100,7 +3100,7 @@
BASH
Show me the solution
-
+
In the .gitignore
file, write:
@@ -3139,7 +3139,7 @@ BASH
Show me the solution
-
+
The !
modifier will negate an entry from a previously
defined ignore pattern. Because the !*.csv
entry negates
@@ -3183,7 +3183,7 @@
Log Files
Show me the solution
-
+
- append either
log_*
or log*
as a new entry
@@ -3211,7 +3211,7 @@ Key PointsContent from Remotes in GitHub
-Last updated on 2024-07-16 |
+
Last updated on 2024-08-10 |
Edit this page
@@ -3535,11 +3535,11 @@ OUTPUT<
Now, going to GitHub.com, click on your profile icon in the top right
corner to get the drop-down menu. Click “Settings,” then on the settings
-page, click “SSH and GPG keys,” on the left side “Account settings”
-menu. Click the “New SSH key” button on the right side. Now, you can add
-the title (Dracula uses the title “Vlad’s Lab Laptop” so he can remember
-where the original key pair files are located), paste your SSH key into
-the field, and click the “Add SSH key” to complete the setup.
+page, click “SSH and GPG keys,” on the left side “Access” menu. Click
+the “New SSH key” button on the right side. Now, you can add the title
+(Dracula uses the title “Vlad’s Lab Laptop” so he can remember where the
+original key pair files are located), paste your SSH key into the field,
+and click the “Add SSH key” to complete the setup.
Now that we’ve set that up, let’s check our authentication again from
the command line.
@@ -3700,7 +3700,7 @@ GitHub GUI
Show me the solution
-
+
The left-most button (with the picture of a clipboard) copies the
full identifier of the commit to the clipboard. In the shell,
@@ -3761,7 +3761,7 @@
GitHub Timestamp
Show me the solution
-
+
GitHub displays timestamps in a human readable relative format
(i.e. “22 hours ago” or “three weeks ago”). However, if you hover over
@@ -3789,7 +3789,7 @@
Push vs. Commit
Show me the solution
-
+
When we push changes, we’re interacting with a remote repository to
update it with the changes we’ve made locally (often this corresponds to
@@ -3819,7 +3819,7 @@
GitHub License and README files
Show me the solution
-
+
In this case, we’d see a merge conflict due to unrelated histories.
When GitHub creates a README.md file, it performs a commit in the remote
@@ -5614,7 +5614,7 @@
Solution to Challenge
-
+
This can be done in Rstudio:
diff --git a/instructor/03-create.html b/instructor/03-create.html
index da5336b95a..91f06bc3ca 100644
--- a/instructor/03-create.html
+++ b/instructor/03-create.html
@@ -535,7 +535,7 @@ BASH
Show me the solution
-
+
No. Dracula does not need to make the moons
subdirectory
a Git repository because the planets
repository can track
@@ -584,7 +584,7 @@
Correcting git init
Mistakes
Solution – USE WITH CAUTION!
-
+
Background
diff --git a/instructor/04-changes.html b/instructor/04-changes.html
index 425a199885..5941b94eb8 100644
--- a/instructor/04-changes.html
+++ b/instructor/04-changes.html
@@ -1039,7 +1039,7 @@ Choosing a Commit Message
Show me the solution
-
+
Answer 1 is not descriptive enough, and the purpose of the commit is
unclear; and answer 2 is redundant to using “git diff” to see what
@@ -1089,7 +1089,7 @@
BASH
Show me the solution
-
+
- Would only create a commit if files have already been staged.
- Would try to create a new repository.
@@ -1125,7 +1125,7 @@ Committing Multiple Files
Show me the solution
-
+
The output below from cat mars.txt
reflects only content
added during this exercise. Your output may vary.
@@ -1210,7 +1210,7 @@
-
+
If needed, move out of the planets
folder:
diff --git a/instructor/05-history.html b/instructor/05-history.html
index 022c1cd69e..7b5696df67 100644
--- a/instructor/05-history.html
+++ b/instructor/05-history.html
@@ -703,7 +703,7 @@ Recovering Older Versions of a File
Show me the solution
-
+
GitHub displays timestamps in a human readable relative format (i.e. “22 hours ago” or “three weeks ago”). However, if you hover over @@ -961,7 +961,7 @@
Push vs. Commit
Show me the solution
-
+
When we push changes, we’re interacting with a remote repository to
update it with the changes we’ve made locally (often this corresponds to
@@ -991,7 +991,7 @@
GitHub License and README files
Show me the solution
-
+
In this case, we’d see a merge conflict due to unrelated histories.
When GitHub creates a README.md file, it performs a commit in the remote
@@ -1117,7 +1117,7 @@
Key Points
Solution to Challenge
-
+
This can be done in Rstudio:
diff --git a/aio.html b/aio.html
index 687ad8dff1..18dcc19189 100644
--- a/aio.html
+++ b/aio.html
@@ -1100,7 +1100,7 @@ BASH
Show me the solution
-
+
No. Dracula does not need to make the moons
subdirectory
a Git repository because the planets
repository can track
@@ -1149,7 +1149,7 @@
Correcting git init
Mistakes
Solution – USE WITH CAUTION!
-
+
Background
@@ -1872,7 +1872,7 @@ Choosing a Commit Message
Show me the solution
-
+
Answer 1 is not descriptive enough, and the purpose of the commit is
unclear; and answer 2 is redundant to using “git diff” to see what
@@ -1924,7 +1924,7 @@
BASH
Show me the solution
-
+
- Would only create a commit if files have already been staged.
@@ -1964,7 +1964,7 @@ Committing Multiple Files
Show me the solution
-
+
The output below from cat mars.txt
reflects only content
added during this exercise. Your output may vary.
@@ -2051,7 +2051,7 @@
-
+
If needed, move out of the planets
folder:
@@ -2438,7 +2438,7 @@ Recovering Older Versions of a File
Show me the solution
-
+
The answer is (5)-Both 2 and 4.
The restore
command restores files from the repository,
@@ -2494,7 +2494,7 @@
Reverting a Commit
Show me the solution
-
+
The command git log
lists project history with commit
IDs.
@@ -2557,7 +2557,7 @@ OUTPUT<
-
+
The answer is 2.
The command git add venus.txt
places the current version
@@ -2621,7 +2621,7 @@
Getting Rid of Staged Changes
Show me the solution
-
+
After adding a change, git restore
can not be used
directly. Let’s look at the output of git status
:
@@ -2924,7 +2924,7 @@ BASH
Show me the solution
-
+
If you only want to ignore the contents of
results/plots
, you can change your .gitignore
@@ -2965,7 +2965,7 @@
Including Specific Files
Show me the solution
-
+
You would add the following two lines to your .gitignore:
@@ -3014,7 +3014,7 @@ BASH
Show me the solution
-
+
If you want to ignore the contents of results/
but not
those of results/data/
, you can change your
@@ -3062,7 +3062,7 @@
BASH
Show me the solution
-
+
Appending results/data/position/gps/*.csv
will match
every file in results/data/position/gps
that ends with
@@ -3100,7 +3100,7 @@
BASH
Show me the solution
-
+
In the .gitignore
file, write:
@@ -3139,7 +3139,7 @@ BASH
Show me the solution
-
+
The !
modifier will negate an entry from a previously
defined ignore pattern. Because the !*.csv
entry negates
@@ -3183,7 +3183,7 @@
Log Files
Show me the solution
-
+
- append either
log_*
or log*
as a new entry
@@ -3211,7 +3211,7 @@ Key PointsContent from Remotes in GitHub
-Last updated on 2024-07-16 |
+
Last updated on 2024-08-10 |
Edit this page
@@ -3535,11 +3535,11 @@ OUTPUT<
Now, going to GitHub.com, click on your profile icon in the top right
corner to get the drop-down menu. Click “Settings,” then on the settings
-page, click “SSH and GPG keys,” on the left side “Account settings”
-menu. Click the “New SSH key” button on the right side. Now, you can add
-the title (Dracula uses the title “Vlad’s Lab Laptop” so he can remember
-where the original key pair files are located), paste your SSH key into
-the field, and click the “Add SSH key” to complete the setup.
+page, click “SSH and GPG keys,” on the left side “Access” menu. Click
+the “New SSH key” button on the right side. Now, you can add the title
+(Dracula uses the title “Vlad’s Lab Laptop” so he can remember where the
+original key pair files are located), paste your SSH key into the field,
+and click the “Add SSH key” to complete the setup.
Now that we’ve set that up, let’s check our authentication again from
the command line.
@@ -3700,7 +3700,7 @@ GitHub GUI
Show me the solution
-
+
The left-most button (with the picture of a clipboard) copies the
full identifier of the commit to the clipboard. In the shell,
@@ -3761,7 +3761,7 @@
GitHub Timestamp
Show me the solution
-
+
GitHub displays timestamps in a human readable relative format
(i.e. “22 hours ago” or “three weeks ago”). However, if you hover over
@@ -3789,7 +3789,7 @@
Push vs. Commit
Show me the solution
-
+
When we push changes, we’re interacting with a remote repository to
update it with the changes we’ve made locally (often this corresponds to
@@ -3819,7 +3819,7 @@
GitHub License and README files
Show me the solution
-
+
In this case, we’d see a merge conflict due to unrelated histories.
When GitHub creates a README.md file, it performs a commit in the remote
@@ -5614,7 +5614,7 @@
Solution to Challenge
-
+
This can be done in Rstudio:
diff --git a/instructor/03-create.html b/instructor/03-create.html
index da5336b95a..91f06bc3ca 100644
--- a/instructor/03-create.html
+++ b/instructor/03-create.html
@@ -535,7 +535,7 @@ BASH
Show me the solution
-
+
No. Dracula does not need to make the moons
subdirectory
a Git repository because the planets
repository can track
@@ -584,7 +584,7 @@
Correcting git init
Mistakes
Solution – USE WITH CAUTION!
-
+
Background
diff --git a/instructor/04-changes.html b/instructor/04-changes.html
index 425a199885..5941b94eb8 100644
--- a/instructor/04-changes.html
+++ b/instructor/04-changes.html
@@ -1039,7 +1039,7 @@ Choosing a Commit Message
Show me the solution
-
+
Answer 1 is not descriptive enough, and the purpose of the commit is
unclear; and answer 2 is redundant to using “git diff” to see what
@@ -1089,7 +1089,7 @@
BASH
Show me the solution
-
+
- Would only create a commit if files have already been staged.
- Would try to create a new repository.
@@ -1125,7 +1125,7 @@ Committing Multiple Files
Show me the solution
-
+
The output below from cat mars.txt
reflects only content
added during this exercise. Your output may vary.
@@ -1210,7 +1210,7 @@
-
+
If needed, move out of the planets
folder:
diff --git a/instructor/05-history.html b/instructor/05-history.html
index 022c1cd69e..7b5696df67 100644
--- a/instructor/05-history.html
+++ b/instructor/05-history.html
@@ -703,7 +703,7 @@ Recovering Older Versions of a File
Show me the solution
-
+
When we push changes, we’re interacting with a remote repository to update it with the changes we’ve made locally (often this corresponds to @@ -991,7 +991,7 @@
GitHub License and README files
Show me the solution
-
+
In this case, we’d see a merge conflict due to unrelated histories.
When GitHub creates a README.md file, it performs a commit in the remote
@@ -1117,7 +1117,7 @@
Key Points
Solution to Challenge
-
+
This can be done in Rstudio:
diff --git a/aio.html b/aio.html
index 687ad8dff1..18dcc19189 100644
--- a/aio.html
+++ b/aio.html
@@ -1100,7 +1100,7 @@ BASH
Show me the solution
-
+
No. Dracula does not need to make the moons
subdirectory
a Git repository because the planets
repository can track
@@ -1149,7 +1149,7 @@
Correcting git init
Mistakes
Solution – USE WITH CAUTION!
-
+
Background
@@ -1872,7 +1872,7 @@ Choosing a Commit Message
Show me the solution
-
+
Answer 1 is not descriptive enough, and the purpose of the commit is
unclear; and answer 2 is redundant to using “git diff” to see what
@@ -1924,7 +1924,7 @@
BASH
Show me the solution
-
+
- Would only create a commit if files have already been staged.
@@ -1964,7 +1964,7 @@ Committing Multiple Files
Show me the solution
-
+
The output below from cat mars.txt
reflects only content
added during this exercise. Your output may vary.
@@ -2051,7 +2051,7 @@
-
+
If needed, move out of the planets
folder:
@@ -2438,7 +2438,7 @@ Recovering Older Versions of a File
Show me the solution
-
+
The answer is (5)-Both 2 and 4.
The restore
command restores files from the repository,
@@ -2494,7 +2494,7 @@
Reverting a Commit
Show me the solution
-
+
The command git log
lists project history with commit
IDs.
@@ -2557,7 +2557,7 @@ OUTPUT<
-
+
The answer is 2.
The command git add venus.txt
places the current version
@@ -2621,7 +2621,7 @@
Getting Rid of Staged Changes
Show me the solution
-
+
After adding a change, git restore
can not be used
directly. Let’s look at the output of git status
:
@@ -2924,7 +2924,7 @@ BASH
Show me the solution
-
+
If you only want to ignore the contents of
results/plots
, you can change your .gitignore
@@ -2965,7 +2965,7 @@
Including Specific Files
Show me the solution
-
+
You would add the following two lines to your .gitignore:
@@ -3014,7 +3014,7 @@ BASH
Show me the solution
-
+
If you want to ignore the contents of results/
but not
those of results/data/
, you can change your
@@ -3062,7 +3062,7 @@
BASH
Show me the solution
-
+
Appending results/data/position/gps/*.csv
will match
every file in results/data/position/gps
that ends with
@@ -3100,7 +3100,7 @@
BASH
Show me the solution
-
+
In the .gitignore
file, write:
@@ -3139,7 +3139,7 @@ BASH
Show me the solution
-
+
The !
modifier will negate an entry from a previously
defined ignore pattern. Because the !*.csv
entry negates
@@ -3183,7 +3183,7 @@
Log Files
Show me the solution
-
+
- append either
log_*
or log*
as a new entry
@@ -3211,7 +3211,7 @@ Key PointsContent from Remotes in GitHub
-Last updated on 2024-07-16 |
+
Last updated on 2024-08-10 |
Edit this page
@@ -3535,11 +3535,11 @@ OUTPUT<
Now, going to GitHub.com, click on your profile icon in the top right
corner to get the drop-down menu. Click “Settings,” then on the settings
-page, click “SSH and GPG keys,” on the left side “Account settings”
-menu. Click the “New SSH key” button on the right side. Now, you can add
-the title (Dracula uses the title “Vlad’s Lab Laptop” so he can remember
-where the original key pair files are located), paste your SSH key into
-the field, and click the “Add SSH key” to complete the setup.
+page, click “SSH and GPG keys,” on the left side “Access” menu. Click
+the “New SSH key” button on the right side. Now, you can add the title
+(Dracula uses the title “Vlad’s Lab Laptop” so he can remember where the
+original key pair files are located), paste your SSH key into the field,
+and click the “Add SSH key” to complete the setup.
Now that we’ve set that up, let’s check our authentication again from
the command line.
@@ -3700,7 +3700,7 @@ GitHub GUI
Show me the solution
-
+
The left-most button (with the picture of a clipboard) copies the
full identifier of the commit to the clipboard. In the shell,
@@ -3761,7 +3761,7 @@
GitHub Timestamp
Show me the solution
-
+
GitHub displays timestamps in a human readable relative format
(i.e. “22 hours ago” or “three weeks ago”). However, if you hover over
@@ -3789,7 +3789,7 @@
Push vs. Commit
Show me the solution
-
+
When we push changes, we’re interacting with a remote repository to
update it with the changes we’ve made locally (often this corresponds to
@@ -3819,7 +3819,7 @@
GitHub License and README files
Show me the solution
-
+
In this case, we’d see a merge conflict due to unrelated histories.
When GitHub creates a README.md file, it performs a commit in the remote
@@ -5614,7 +5614,7 @@
Solution to Challenge
-
+
This can be done in Rstudio:
diff --git a/instructor/03-create.html b/instructor/03-create.html
index da5336b95a..91f06bc3ca 100644
--- a/instructor/03-create.html
+++ b/instructor/03-create.html
@@ -535,7 +535,7 @@ BASH
Show me the solution
-
+
No. Dracula does not need to make the moons
subdirectory
a Git repository because the planets
repository can track
@@ -584,7 +584,7 @@
Correcting git init
Mistakes
Solution – USE WITH CAUTION!
-
+
Background
diff --git a/instructor/04-changes.html b/instructor/04-changes.html
index 425a199885..5941b94eb8 100644
--- a/instructor/04-changes.html
+++ b/instructor/04-changes.html
@@ -1039,7 +1039,7 @@ Choosing a Commit Message
Show me the solution
-
+
Answer 1 is not descriptive enough, and the purpose of the commit is
unclear; and answer 2 is redundant to using “git diff” to see what
@@ -1089,7 +1089,7 @@
BASH
Show me the solution
-
+
- Would only create a commit if files have already been staged.
- Would try to create a new repository.
@@ -1125,7 +1125,7 @@ Committing Multiple Files
Show me the solution
-
+
The output below from cat mars.txt
reflects only content
added during this exercise. Your output may vary.
@@ -1210,7 +1210,7 @@
-
+
If needed, move out of the planets
folder:
diff --git a/instructor/05-history.html b/instructor/05-history.html
index 022c1cd69e..7b5696df67 100644
--- a/instructor/05-history.html
+++ b/instructor/05-history.html
@@ -703,7 +703,7 @@ Recovering Older Versions of a File
Show me the solution
-
+
In this case, we’d see a merge conflict due to unrelated histories. When GitHub creates a README.md file, it performs a commit in the remote @@ -1117,7 +1117,7 @@
Key Points
Solution to Challenge
-
+
This can be done in Rstudio:
diff --git a/aio.html b/aio.html
index 687ad8dff1..18dcc19189 100644
--- a/aio.html
+++ b/aio.html
@@ -1100,7 +1100,7 @@ BASH
Show me the solution
-
+
No. Dracula does not need to make the moons
subdirectory
a Git repository because the planets
repository can track
@@ -1149,7 +1149,7 @@
Correcting git init
Mistakes
Solution – USE WITH CAUTION!
-
+
Background
@@ -1872,7 +1872,7 @@ Choosing a Commit Message
Show me the solution
-
+
Answer 1 is not descriptive enough, and the purpose of the commit is
unclear; and answer 2 is redundant to using “git diff” to see what
@@ -1924,7 +1924,7 @@
BASH
Show me the solution
-
+
- Would only create a commit if files have already been staged.
@@ -1964,7 +1964,7 @@ Committing Multiple Files
Show me the solution
-
+
The output below from cat mars.txt
reflects only content
added during this exercise. Your output may vary.
@@ -2051,7 +2051,7 @@
-
+
If needed, move out of the planets
folder:
@@ -2438,7 +2438,7 @@ Recovering Older Versions of a File
Show me the solution
-
+
The answer is (5)-Both 2 and 4.
The restore
command restores files from the repository,
@@ -2494,7 +2494,7 @@
Reverting a Commit
Show me the solution
-
+
The command git log
lists project history with commit
IDs.
@@ -2557,7 +2557,7 @@ OUTPUT<
-
+
The answer is 2.
The command git add venus.txt
places the current version
@@ -2621,7 +2621,7 @@
Getting Rid of Staged Changes
Show me the solution
-
+
After adding a change, git restore
can not be used
directly. Let’s look at the output of git status
:
@@ -2924,7 +2924,7 @@ BASH
Show me the solution
-
+
If you only want to ignore the contents of
results/plots
, you can change your .gitignore
@@ -2965,7 +2965,7 @@
Including Specific Files
Show me the solution
-
+
You would add the following two lines to your .gitignore:
@@ -3014,7 +3014,7 @@ BASH
Show me the solution
-
+
If you want to ignore the contents of results/
but not
those of results/data/
, you can change your
@@ -3062,7 +3062,7 @@
BASH
Show me the solution
-
+
Appending results/data/position/gps/*.csv
will match
every file in results/data/position/gps
that ends with
@@ -3100,7 +3100,7 @@
BASH
Show me the solution
-
+
In the .gitignore
file, write:
@@ -3139,7 +3139,7 @@ BASH
Show me the solution
-
+
The !
modifier will negate an entry from a previously
defined ignore pattern. Because the !*.csv
entry negates
@@ -3183,7 +3183,7 @@
Log Files
Show me the solution
-
+
- append either
log_*
or log*
as a new entry
@@ -3211,7 +3211,7 @@ Key PointsContent from Remotes in GitHub
-Last updated on 2024-07-16 |
+
Last updated on 2024-08-10 |
Edit this page
@@ -3535,11 +3535,11 @@ OUTPUT<
Now, going to GitHub.com, click on your profile icon in the top right
corner to get the drop-down menu. Click “Settings,” then on the settings
-page, click “SSH and GPG keys,” on the left side “Account settings”
-menu. Click the “New SSH key” button on the right side. Now, you can add
-the title (Dracula uses the title “Vlad’s Lab Laptop” so he can remember
-where the original key pair files are located), paste your SSH key into
-the field, and click the “Add SSH key” to complete the setup.
+page, click “SSH and GPG keys,” on the left side “Access” menu. Click
+the “New SSH key” button on the right side. Now, you can add the title
+(Dracula uses the title “Vlad’s Lab Laptop” so he can remember where the
+original key pair files are located), paste your SSH key into the field,
+and click the “Add SSH key” to complete the setup.
Now that we’ve set that up, let’s check our authentication again from
the command line.
@@ -3700,7 +3700,7 @@ GitHub GUI
Show me the solution
-
+
The left-most button (with the picture of a clipboard) copies the
full identifier of the commit to the clipboard. In the shell,
@@ -3761,7 +3761,7 @@
GitHub Timestamp
Show me the solution
-
+
GitHub displays timestamps in a human readable relative format
(i.e. “22 hours ago” or “three weeks ago”). However, if you hover over
@@ -3789,7 +3789,7 @@
Push vs. Commit
Show me the solution
-
+
When we push changes, we’re interacting with a remote repository to
update it with the changes we’ve made locally (often this corresponds to
@@ -3819,7 +3819,7 @@
GitHub License and README files
Show me the solution
-
+
In this case, we’d see a merge conflict due to unrelated histories.
When GitHub creates a README.md file, it performs a commit in the remote
@@ -5614,7 +5614,7 @@
Solution to Challenge
-
+
This can be done in Rstudio:
diff --git a/instructor/03-create.html b/instructor/03-create.html
index da5336b95a..91f06bc3ca 100644
--- a/instructor/03-create.html
+++ b/instructor/03-create.html
@@ -535,7 +535,7 @@ BASH
Show me the solution
-
+
No. Dracula does not need to make the moons
subdirectory
a Git repository because the planets
repository can track
@@ -584,7 +584,7 @@
Correcting git init
Mistakes
Solution – USE WITH CAUTION!
-
+
Background
diff --git a/instructor/04-changes.html b/instructor/04-changes.html
index 425a199885..5941b94eb8 100644
--- a/instructor/04-changes.html
+++ b/instructor/04-changes.html
@@ -1039,7 +1039,7 @@ Choosing a Commit Message
Show me the solution
-
+
Answer 1 is not descriptive enough, and the purpose of the commit is
unclear; and answer 2 is redundant to using “git diff” to see what
@@ -1089,7 +1089,7 @@
BASH
Show me the solution
-
+
- Would only create a commit if files have already been staged.
- Would try to create a new repository.
@@ -1125,7 +1125,7 @@ Committing Multiple Files
Show me the solution
-
+
The output below from cat mars.txt
reflects only content
added during this exercise. Your output may vary.
@@ -1210,7 +1210,7 @@
-
+
If needed, move out of the planets
folder:
diff --git a/instructor/05-history.html b/instructor/05-history.html
index 022c1cd69e..7b5696df67 100644
--- a/instructor/05-history.html
+++ b/instructor/05-history.html
@@ -703,7 +703,7 @@ Recovering Older Versions of a File
Show me the solution
-
+
This can be done in Rstudio:
BASH
Show me the solution
-
+
No. Dracula does not need to make the moons
subdirectory
a Git repository because the planets
repository can track
@@ -1149,7 +1149,7 @@
Correcting git init
Mistakes
Solution – USE WITH CAUTION!
-
+
Background
@@ -1872,7 +1872,7 @@ Choosing a Commit Message
Show me the solution
-
+
Answer 1 is not descriptive enough, and the purpose of the commit is
unclear; and answer 2 is redundant to using “git diff” to see what
@@ -1924,7 +1924,7 @@
BASH
Show me the solution
-
+
- Would only create a commit if files have already been staged.
@@ -1964,7 +1964,7 @@ Committing Multiple Files
Show me the solution
-
+
The output below from cat mars.txt
reflects only content
added during this exercise. Your output may vary.
@@ -2051,7 +2051,7 @@
-
+
If needed, move out of the planets
folder:
@@ -2438,7 +2438,7 @@ Recovering Older Versions of a File
Show me the solution
-
+
The answer is (5)-Both 2 and 4.
The restore
command restores files from the repository,
@@ -2494,7 +2494,7 @@
Reverting a Commit
Show me the solution
-
+
The command git log
lists project history with commit
IDs.
@@ -2557,7 +2557,7 @@ OUTPUT<
-
+
The answer is 2.
The command git add venus.txt
places the current version
@@ -2621,7 +2621,7 @@
Getting Rid of Staged Changes
Show me the solution
-
+
After adding a change, git restore
can not be used
directly. Let’s look at the output of git status
:
@@ -2924,7 +2924,7 @@ BASH
Show me the solution
-
+
If you only want to ignore the contents of
results/plots
, you can change your .gitignore
@@ -2965,7 +2965,7 @@
Including Specific Files
Show me the solution
-
+
You would add the following two lines to your .gitignore:
@@ -3014,7 +3014,7 @@ BASH
Show me the solution
-
+
If you want to ignore the contents of results/
but not
those of results/data/
, you can change your
@@ -3062,7 +3062,7 @@
BASH
Show me the solution
-
+
Appending results/data/position/gps/*.csv
will match
every file in results/data/position/gps
that ends with
@@ -3100,7 +3100,7 @@
BASH
Show me the solution
-
+
In the .gitignore
file, write:
@@ -3139,7 +3139,7 @@ BASH
Show me the solution
-
+
The !
modifier will negate an entry from a previously
defined ignore pattern. Because the !*.csv
entry negates
@@ -3183,7 +3183,7 @@
Log Files
Show me the solution
-
+
- append either
log_*
or log*
as a new entry
@@ -3211,7 +3211,7 @@ Key PointsContent from Remotes in GitHub
-Last updated on 2024-07-16 |
+
Last updated on 2024-08-10 |
Edit this page
@@ -3535,11 +3535,11 @@ OUTPUT<
Now, going to GitHub.com, click on your profile icon in the top right
corner to get the drop-down menu. Click “Settings,” then on the settings
-page, click “SSH and GPG keys,” on the left side “Account settings”
-menu. Click the “New SSH key” button on the right side. Now, you can add
-the title (Dracula uses the title “Vlad’s Lab Laptop” so he can remember
-where the original key pair files are located), paste your SSH key into
-the field, and click the “Add SSH key” to complete the setup.
+page, click “SSH and GPG keys,” on the left side “Access” menu. Click
+the “New SSH key” button on the right side. Now, you can add the title
+(Dracula uses the title “Vlad’s Lab Laptop” so he can remember where the
+original key pair files are located), paste your SSH key into the field,
+and click the “Add SSH key” to complete the setup.
Now that we’ve set that up, let’s check our authentication again from
the command line.
@@ -3700,7 +3700,7 @@ GitHub GUI
Show me the solution
-
+
The left-most button (with the picture of a clipboard) copies the
full identifier of the commit to the clipboard. In the shell,
@@ -3761,7 +3761,7 @@
GitHub Timestamp
Show me the solution
-
+
GitHub displays timestamps in a human readable relative format
(i.e. “22 hours ago” or “three weeks ago”). However, if you hover over
@@ -3789,7 +3789,7 @@
Push vs. Commit
Show me the solution
-
+
When we push changes, we’re interacting with a remote repository to
update it with the changes we’ve made locally (often this corresponds to
@@ -3819,7 +3819,7 @@
GitHub License and README files
Show me the solution
-
+
In this case, we’d see a merge conflict due to unrelated histories.
When GitHub creates a README.md file, it performs a commit in the remote
@@ -5614,7 +5614,7 @@
Solution to Challenge
-
+
This can be done in Rstudio:
diff --git a/instructor/03-create.html b/instructor/03-create.html
index da5336b95a..91f06bc3ca 100644
--- a/instructor/03-create.html
+++ b/instructor/03-create.html
@@ -535,7 +535,7 @@ BASH
Show me the solution
-
+
No. Dracula does not need to make the moons
subdirectory
a Git repository because the planets
repository can track
@@ -584,7 +584,7 @@
Correcting git init
Mistakes
Solution – USE WITH CAUTION!
-
+
Background
diff --git a/instructor/04-changes.html b/instructor/04-changes.html
index 425a199885..5941b94eb8 100644
--- a/instructor/04-changes.html
+++ b/instructor/04-changes.html
@@ -1039,7 +1039,7 @@ Choosing a Commit Message
Show me the solution
-
+
Answer 1 is not descriptive enough, and the purpose of the commit is
unclear; and answer 2 is redundant to using “git diff” to see what
@@ -1089,7 +1089,7 @@
BASH
Show me the solution
-
+
- Would only create a commit if files have already been staged.
- Would try to create a new repository.
@@ -1125,7 +1125,7 @@ Committing Multiple Files
Show me the solution
-
+
The output below from cat mars.txt
reflects only content
added during this exercise. Your output may vary.
@@ -1210,7 +1210,7 @@
-
+
If needed, move out of the planets
folder:
diff --git a/instructor/05-history.html b/instructor/05-history.html
index 022c1cd69e..7b5696df67 100644
--- a/instructor/05-history.html
+++ b/instructor/05-history.html
@@ -703,7 +703,7 @@ Recovering Older Versions of a File
Show me the solution
-
+
No. Dracula does not need to make the moons
subdirectory
a Git repository because the planets
repository can track
@@ -1149,7 +1149,7 @@
Correcting git init
Mistakes
Solution – USE WITH CAUTION!
-
+
Background
@@ -1872,7 +1872,7 @@ Choosing a Commit Message
Show me the solution
-
+
Answer 1 is not descriptive enough, and the purpose of the commit is
unclear; and answer 2 is redundant to using “git diff” to see what
@@ -1924,7 +1924,7 @@
BASH
Show me the solution
-
+
- Would only create a commit if files have already been staged.
@@ -1964,7 +1964,7 @@ Committing Multiple Files
Show me the solution
-
+
The output below from cat mars.txt
reflects only content
added during this exercise. Your output may vary.
@@ -2051,7 +2051,7 @@
-
+
If needed, move out of the planets
folder:
@@ -2438,7 +2438,7 @@ Recovering Older Versions of a File
Show me the solution
-
+
The answer is (5)-Both 2 and 4.
The restore
command restores files from the repository,
@@ -2494,7 +2494,7 @@
Reverting a Commit
Show me the solution
-
+
The command git log
lists project history with commit
IDs.
@@ -2557,7 +2557,7 @@ OUTPUT<
-
+
The answer is 2.
The command git add venus.txt
places the current version
@@ -2621,7 +2621,7 @@
Getting Rid of Staged Changes
Show me the solution
-
+
After adding a change, git restore
can not be used
directly. Let’s look at the output of git status
:
@@ -2924,7 +2924,7 @@ BASH
Show me the solution
-
+
If you only want to ignore the contents of
results/plots
, you can change your .gitignore
@@ -2965,7 +2965,7 @@
Including Specific Files
Show me the solution
-
+
You would add the following two lines to your .gitignore:
@@ -3014,7 +3014,7 @@ BASH
Show me the solution
-
+
If you want to ignore the contents of results/
but not
those of results/data/
, you can change your
@@ -3062,7 +3062,7 @@
BASH
Show me the solution
-
+
Appending results/data/position/gps/*.csv
will match
every file in results/data/position/gps
that ends with
@@ -3100,7 +3100,7 @@
BASH
Show me the solution
-
+
In the .gitignore
file, write:
@@ -3139,7 +3139,7 @@ BASH
Show me the solution
-
+
The !
modifier will negate an entry from a previously
defined ignore pattern. Because the !*.csv
entry negates
@@ -3183,7 +3183,7 @@
Log Files
Show me the solution
-
+
- append either
log_*
or log*
as a new entry
@@ -3211,7 +3211,7 @@ Key PointsContent from Remotes in GitHub
-Last updated on 2024-07-16 |
+
Last updated on 2024-08-10 |
Edit this page
@@ -3535,11 +3535,11 @@ OUTPUT<
Now, going to GitHub.com, click on your profile icon in the top right
corner to get the drop-down menu. Click “Settings,” then on the settings
-page, click “SSH and GPG keys,” on the left side “Account settings”
-menu. Click the “New SSH key” button on the right side. Now, you can add
-the title (Dracula uses the title “Vlad’s Lab Laptop” so he can remember
-where the original key pair files are located), paste your SSH key into
-the field, and click the “Add SSH key” to complete the setup.
+page, click “SSH and GPG keys,” on the left side “Access” menu. Click
+the “New SSH key” button on the right side. Now, you can add the title
+(Dracula uses the title “Vlad’s Lab Laptop” so he can remember where the
+original key pair files are located), paste your SSH key into the field,
+and click the “Add SSH key” to complete the setup.
Now that we’ve set that up, let’s check our authentication again from
the command line.
@@ -3700,7 +3700,7 @@ GitHub GUI
Show me the solution
-
+
The left-most button (with the picture of a clipboard) copies the
full identifier of the commit to the clipboard. In the shell,
@@ -3761,7 +3761,7 @@
GitHub Timestamp
Show me the solution
-
+
GitHub displays timestamps in a human readable relative format
(i.e. “22 hours ago” or “three weeks ago”). However, if you hover over
@@ -3789,7 +3789,7 @@
Push vs. Commit
Show me the solution
-
+
When we push changes, we’re interacting with a remote repository to
update it with the changes we’ve made locally (often this corresponds to
@@ -3819,7 +3819,7 @@
GitHub License and README files
Show me the solution
-
+
In this case, we’d see a merge conflict due to unrelated histories.
When GitHub creates a README.md file, it performs a commit in the remote
@@ -5614,7 +5614,7 @@
Solution to Challenge
-
+
This can be done in Rstudio:
diff --git a/instructor/03-create.html b/instructor/03-create.html
index da5336b95a..91f06bc3ca 100644
--- a/instructor/03-create.html
+++ b/instructor/03-create.html
@@ -535,7 +535,7 @@ BASH
Show me the solution
-
+
No. Dracula does not need to make the moons
subdirectory
a Git repository because the planets
repository can track
@@ -584,7 +584,7 @@
Correcting git init
Mistakes
Solution – USE WITH CAUTION!
-
+
Background
diff --git a/instructor/04-changes.html b/instructor/04-changes.html
index 425a199885..5941b94eb8 100644
--- a/instructor/04-changes.html
+++ b/instructor/04-changes.html
@@ -1039,7 +1039,7 @@ Choosing a Commit Message
Show me the solution
-
+
Answer 1 is not descriptive enough, and the purpose of the commit is
unclear; and answer 2 is redundant to using “git diff” to see what
@@ -1089,7 +1089,7 @@
BASH
Show me the solution
-
+
- Would only create a commit if files have already been staged.
- Would try to create a new repository.
@@ -1125,7 +1125,7 @@ Committing Multiple Files
Show me the solution
-
+
The output below from cat mars.txt
reflects only content
added during this exercise. Your output may vary.
@@ -1210,7 +1210,7 @@
-
+
If needed, move out of the planets
folder:
diff --git a/instructor/05-history.html b/instructor/05-history.html
index 022c1cd69e..7b5696df67 100644
--- a/instructor/05-history.html
+++ b/instructor/05-history.html
@@ -703,7 +703,7 @@ Recovering Older Versions of a File
Show me the solution
-
+
Background
@@ -1872,7 +1872,7 @@ Choosing a Commit Message
Show me the solution
-
+
Answer 1 is not descriptive enough, and the purpose of the commit is
unclear; and answer 2 is redundant to using “git diff” to see what
@@ -1924,7 +1924,7 @@
BASH
Show me the solution
-
+
- Would only create a commit if files have already been staged.
@@ -1964,7 +1964,7 @@ Committing Multiple Files
Show me the solution
-
+
The output below from cat mars.txt
reflects only content
added during this exercise. Your output may vary.
@@ -2051,7 +2051,7 @@
-
+
If needed, move out of the planets
folder:
@@ -2438,7 +2438,7 @@ Recovering Older Versions of a File
Show me the solution
-
+
The answer is (5)-Both 2 and 4.
The restore
command restores files from the repository,
@@ -2494,7 +2494,7 @@
Reverting a Commit
Show me the solution
-
+
The command git log
lists project history with commit
IDs.
@@ -2557,7 +2557,7 @@ OUTPUT<
-
+
The answer is 2.
The command git add venus.txt
places the current version
@@ -2621,7 +2621,7 @@
Getting Rid of Staged Changes
Show me the solution
-
+
After adding a change, git restore
can not be used
directly. Let’s look at the output of git status
:
@@ -2924,7 +2924,7 @@ BASH
Show me the solution
-
+
If you only want to ignore the contents of
results/plots
, you can change your .gitignore
@@ -2965,7 +2965,7 @@
Including Specific Files
Show me the solution
-
+
You would add the following two lines to your .gitignore:
@@ -3014,7 +3014,7 @@ BASH
Show me the solution
-
+
If you want to ignore the contents of results/
but not
those of results/data/
, you can change your
@@ -3062,7 +3062,7 @@
BASH
Show me the solution
-
+
Appending results/data/position/gps/*.csv
will match
every file in results/data/position/gps
that ends with
@@ -3100,7 +3100,7 @@
BASH
Show me the solution
-
+
In the .gitignore
file, write:
@@ -3139,7 +3139,7 @@ BASH
Show me the solution
-
+
The !
modifier will negate an entry from a previously
defined ignore pattern. Because the !*.csv
entry negates
@@ -3183,7 +3183,7 @@
Log Files
Show me the solution
-
+
- append either
log_*
or log*
as a new entry
@@ -3211,7 +3211,7 @@ Key PointsContent from Remotes in GitHub
-Last updated on 2024-07-16 |
+
Last updated on 2024-08-10 |
Edit this page
@@ -3535,11 +3535,11 @@ OUTPUT<
Now, going to GitHub.com, click on your profile icon in the top right
corner to get the drop-down menu. Click “Settings,” then on the settings
-page, click “SSH and GPG keys,” on the left side “Account settings”
-menu. Click the “New SSH key” button on the right side. Now, you can add
-the title (Dracula uses the title “Vlad’s Lab Laptop” so he can remember
-where the original key pair files are located), paste your SSH key into
-the field, and click the “Add SSH key” to complete the setup.
+page, click “SSH and GPG keys,” on the left side “Access” menu. Click
+the “New SSH key” button on the right side. Now, you can add the title
+(Dracula uses the title “Vlad’s Lab Laptop” so he can remember where the
+original key pair files are located), paste your SSH key into the field,
+and click the “Add SSH key” to complete the setup.
Now that we’ve set that up, let’s check our authentication again from
the command line.
@@ -3700,7 +3700,7 @@ GitHub GUI
Show me the solution
-
+
The left-most button (with the picture of a clipboard) copies the
full identifier of the commit to the clipboard. In the shell,
@@ -3761,7 +3761,7 @@
GitHub Timestamp
Show me the solution
-
+
GitHub displays timestamps in a human readable relative format
(i.e. “22 hours ago” or “three weeks ago”). However, if you hover over
@@ -3789,7 +3789,7 @@
Push vs. Commit
Show me the solution
-
+
When we push changes, we’re interacting with a remote repository to
update it with the changes we’ve made locally (often this corresponds to
@@ -3819,7 +3819,7 @@
GitHub License and README files
Show me the solution
-
+
In this case, we’d see a merge conflict due to unrelated histories.
When GitHub creates a README.md file, it performs a commit in the remote
@@ -5614,7 +5614,7 @@
Solution to Challenge
-
+
This can be done in Rstudio:
diff --git a/instructor/03-create.html b/instructor/03-create.html
index da5336b95a..91f06bc3ca 100644
--- a/instructor/03-create.html
+++ b/instructor/03-create.html
@@ -535,7 +535,7 @@ BASH
Show me the solution
-
+
No. Dracula does not need to make the moons
subdirectory
a Git repository because the planets
repository can track
@@ -584,7 +584,7 @@
Correcting git init
Mistakes
Solution – USE WITH CAUTION!
-
+
Background
diff --git a/instructor/04-changes.html b/instructor/04-changes.html
index 425a199885..5941b94eb8 100644
--- a/instructor/04-changes.html
+++ b/instructor/04-changes.html
@@ -1039,7 +1039,7 @@ Choosing a Commit Message
Show me the solution
-
+
Answer 1 is not descriptive enough, and the purpose of the commit is
unclear; and answer 2 is redundant to using “git diff” to see what
@@ -1089,7 +1089,7 @@
BASH
Show me the solution
-
+
- Would only create a commit if files have already been staged.
- Would try to create a new repository.
@@ -1125,7 +1125,7 @@ Committing Multiple Files
Show me the solution
-
+
The output below from cat mars.txt
reflects only content
added during this exercise. Your output may vary.
@@ -1210,7 +1210,7 @@
-
+
If needed, move out of the planets
folder:
diff --git a/instructor/05-history.html b/instructor/05-history.html
index 022c1cd69e..7b5696df67 100644
--- a/instructor/05-history.html
+++ b/instructor/05-history.html
@@ -703,7 +703,7 @@ Recovering Older Versions of a File
Show me the solution
-
+
Show me the solution
-Answer 1 is not descriptive enough, and the purpose of the commit is unclear; and answer 2 is redundant to using “git diff” to see what @@ -1924,7 +1924,7 @@
BASH
Show me the solution
-
+
- Would only create a commit if files have already been staged.
@@ -1964,7 +1964,7 @@ Committing Multiple Files
Show me the solution
-
+
The output below from cat mars.txt
reflects only content
added during this exercise. Your output may vary.
@@ -2051,7 +2051,7 @@
-
+
If needed, move out of the planets
folder:
@@ -2438,7 +2438,7 @@ Recovering Older Versions of a File
Show me the solution
-
+
The answer is (5)-Both 2 and 4.
The restore
command restores files from the repository,
@@ -2494,7 +2494,7 @@
Reverting a Commit
Show me the solution
-
+
The command git log
lists project history with commit
IDs.
@@ -2557,7 +2557,7 @@ OUTPUT<
-
+
The answer is 2.
The command git add venus.txt
places the current version
@@ -2621,7 +2621,7 @@
Getting Rid of Staged Changes
Show me the solution
-
+
After adding a change, git restore
can not be used
directly. Let’s look at the output of git status
:
@@ -2924,7 +2924,7 @@ BASH
Show me the solution
-
+
If you only want to ignore the contents of
results/plots
, you can change your .gitignore
@@ -2965,7 +2965,7 @@
Including Specific Files
Show me the solution
-
+
You would add the following two lines to your .gitignore:
@@ -3014,7 +3014,7 @@ BASH
Show me the solution
-
+
If you want to ignore the contents of results/
but not
those of results/data/
, you can change your
@@ -3062,7 +3062,7 @@
BASH
Show me the solution
-
+
Appending results/data/position/gps/*.csv
will match
every file in results/data/position/gps
that ends with
@@ -3100,7 +3100,7 @@
BASH
Show me the solution
-
+
In the .gitignore
file, write:
@@ -3139,7 +3139,7 @@ BASH
Show me the solution
-
+
The !
modifier will negate an entry from a previously
defined ignore pattern. Because the !*.csv
entry negates
@@ -3183,7 +3183,7 @@
Log Files
Show me the solution
-
+
- append either
log_*
or log*
as a new entry
@@ -3211,7 +3211,7 @@ Key PointsContent from Remotes in GitHub
-Last updated on 2024-07-16 |
+
Last updated on 2024-08-10 |
Edit this page
@@ -3535,11 +3535,11 @@ OUTPUT<
Now, going to GitHub.com, click on your profile icon in the top right
corner to get the drop-down menu. Click “Settings,” then on the settings
-page, click “SSH and GPG keys,” on the left side “Account settings”
-menu. Click the “New SSH key” button on the right side. Now, you can add
-the title (Dracula uses the title “Vlad’s Lab Laptop” so he can remember
-where the original key pair files are located), paste your SSH key into
-the field, and click the “Add SSH key” to complete the setup.
+page, click “SSH and GPG keys,” on the left side “Access” menu. Click
+the “New SSH key” button on the right side. Now, you can add the title
+(Dracula uses the title “Vlad’s Lab Laptop” so he can remember where the
+original key pair files are located), paste your SSH key into the field,
+and click the “Add SSH key” to complete the setup.
Now that we’ve set that up, let’s check our authentication again from
the command line.
@@ -3700,7 +3700,7 @@ GitHub GUI
Show me the solution
-
+
The left-most button (with the picture of a clipboard) copies the
full identifier of the commit to the clipboard. In the shell,
@@ -3761,7 +3761,7 @@
GitHub Timestamp
Show me the solution
-
+
GitHub displays timestamps in a human readable relative format
(i.e. “22 hours ago” or “three weeks ago”). However, if you hover over
@@ -3789,7 +3789,7 @@
Push vs. Commit
Show me the solution
-
+
When we push changes, we’re interacting with a remote repository to
update it with the changes we’ve made locally (often this corresponds to
@@ -3819,7 +3819,7 @@
GitHub License and README files
Show me the solution
-
+
In this case, we’d see a merge conflict due to unrelated histories.
When GitHub creates a README.md file, it performs a commit in the remote
@@ -5614,7 +5614,7 @@
Solution to Challenge
-
+
This can be done in Rstudio:
diff --git a/instructor/03-create.html b/instructor/03-create.html
index da5336b95a..91f06bc3ca 100644
--- a/instructor/03-create.html
+++ b/instructor/03-create.html
@@ -535,7 +535,7 @@ BASH
Show me the solution
-
+
No. Dracula does not need to make the moons
subdirectory
a Git repository because the planets
repository can track
@@ -584,7 +584,7 @@
Correcting git init
Mistakes
Solution – USE WITH CAUTION!
-
+
Background
diff --git a/instructor/04-changes.html b/instructor/04-changes.html
index 425a199885..5941b94eb8 100644
--- a/instructor/04-changes.html
+++ b/instructor/04-changes.html
@@ -1039,7 +1039,7 @@ Choosing a Commit Message
Show me the solution
-
+
Answer 1 is not descriptive enough, and the purpose of the commit is
unclear; and answer 2 is redundant to using “git diff” to see what
@@ -1089,7 +1089,7 @@
BASH
Show me the solution
-
+
- Would only create a commit if files have already been staged.
- Would try to create a new repository.
@@ -1125,7 +1125,7 @@ Committing Multiple Files
Show me the solution
-
+
The output below from cat mars.txt
reflects only content
added during this exercise. Your output may vary.
@@ -1210,7 +1210,7 @@
-
+
If needed, move out of the planets
folder:
diff --git a/instructor/05-history.html b/instructor/05-history.html
index 022c1cd69e..7b5696df67 100644
--- a/instructor/05-history.html
+++ b/instructor/05-history.html
@@ -703,7 +703,7 @@ Recovering Older Versions of a File
Show me the solution
-
+
- Would only create a commit if files have already been staged. @@ -1964,7 +1964,7 @@
- append either
log_*
orlog*
as a new entry @@ -3211,7 +3211,7 @@Key Points
Content from Remotes in GitHub
-Last updated on 2024-07-16 | +
Last updated on 2024-08-10 | Edit this page
@@ -3535,11 +3535,11 @@OUTPUT<
Now, going to GitHub.com, click on your profile icon in the top right corner to get the drop-down menu. Click “Settings,” then on the settings -page, click “SSH and GPG keys,” on the left side “Account settings” -menu. Click the “New SSH key” button on the right side. Now, you can add -the title (Dracula uses the title “Vlad’s Lab Laptop” so he can remember -where the original key pair files are located), paste your SSH key into -the field, and click the “Add SSH key” to complete the setup.
+page, click “SSH and GPG keys,” on the left side “Access” menu. Click +the “New SSH key” button on the right side. Now, you can add the title +(Dracula uses the title “Vlad’s Lab Laptop” so he can remember where the +original key pair files are located), paste your SSH key into the field, +and click the “Add SSH key” to complete the setup.Now that we’ve set that up, let’s check our authentication again from the command line.
@@ -3700,7 +3700,7 @@GitHub GUI
Show me the solution
-+The left-most button (with the picture of a clipboard) copies the full identifier of the commit to the clipboard. In the shell, @@ -3761,7 +3761,7 @@
GitHub Timestamp
Show me the solution
-+GitHub displays timestamps in a human readable relative format (i.e. “22 hours ago” or “three weeks ago”). However, if you hover over @@ -3789,7 +3789,7 @@
Push vs. Commit
Show me the solution
-+When we push changes, we’re interacting with a remote repository to update it with the changes we’ve made locally (often this corresponds to @@ -3819,7 +3819,7 @@
GitHub License and README files
Show me the solution
-+In this case, we’d see a merge conflict due to unrelated histories. When GitHub creates a README.md file, it performs a commit in the remote @@ -5614,7 +5614,7 @@
Solution to Challenge
-+This can be done in Rstudio:
diff --git a/instructor/03-create.html b/instructor/03-create.html index da5336b95a..91f06bc3ca 100644 --- a/instructor/03-create.html +++ b/instructor/03-create.html @@ -535,7 +535,7 @@BASH
Show me the solution
-+No. Dracula does not need to make the
moons
subdirectory a Git repository because theplanets
repository can track @@ -584,7 +584,7 @@Correcting
git init
MistakesSolution – USE WITH CAUTION!
-+Background
diff --git a/instructor/04-changes.html b/instructor/04-changes.html index 425a199885..5941b94eb8 100644 --- a/instructor/04-changes.html +++ b/instructor/04-changes.html @@ -1039,7 +1039,7 @@Choosing a Commit Message
Show me the solution
-+Answer 1 is not descriptive enough, and the purpose of the commit is unclear; and answer 2 is redundant to using “git diff” to see what @@ -1089,7 +1089,7 @@
BASH
Show me the solution
-+- Would only create a commit if files have already been staged.
- Would try to create a new repository. @@ -1125,7 +1125,7 @@
Committing Multiple Files
Show me the solution
-+The output below from
@@ -1210,7 +1210,7 @@cat mars.txt
reflects only content added during this exercise. Your output may vary.-
+If needed, move out of the
planets
folder:diff --git a/instructor/05-history.html b/instructor/05-history.html index 022c1cd69e..7b5696df67 100644 --- a/instructor/05-history.html +++ b/instructor/05-history.html @@ -703,7 +703,7 @@Recovering Older Versions of a File
Show me the solution
-+
Committing Multiple Files
Show me the solution
-
+
The output below from cat mars.txt
reflects only content
added during this exercise. Your output may vary.
@@ -2051,7 +2051,7 @@
-
+
If needed, move out of the planets
folder:
@@ -2438,7 +2438,7 @@ Recovering Older Versions of a File
Show me the solution
-
+
The answer is (5)-Both 2 and 4.
The restore
command restores files from the repository,
@@ -2494,7 +2494,7 @@
Reverting a Commit
Show me the solution
-
+
The command git log
lists project history with commit
IDs.
@@ -2557,7 +2557,7 @@ OUTPUT<
-
+
The answer is 2.
The command git add venus.txt
places the current version
@@ -2621,7 +2621,7 @@
Getting Rid of Staged Changes
Show me the solution
-
+
After adding a change, git restore
can not be used
directly. Let’s look at the output of git status
:
@@ -2924,7 +2924,7 @@ BASH
Show me the solution
-
+
If you only want to ignore the contents of
results/plots
, you can change your .gitignore
@@ -2965,7 +2965,7 @@
Including Specific Files
Show me the solution
-
+
You would add the following two lines to your .gitignore:
@@ -3014,7 +3014,7 @@ BASH
Show me the solution
-
+
If you want to ignore the contents of results/
but not
those of results/data/
, you can change your
@@ -3062,7 +3062,7 @@
BASH
Show me the solution
-
+
Appending results/data/position/gps/*.csv
will match
every file in results/data/position/gps
that ends with
@@ -3100,7 +3100,7 @@
BASH
Show me the solution
-
+
In the .gitignore
file, write:
@@ -3139,7 +3139,7 @@ BASH
Show me the solution
-
+
The !
modifier will negate an entry from a previously
defined ignore pattern. Because the !*.csv
entry negates
@@ -3183,7 +3183,7 @@
Log Files
Show me the solution
-
+
The output below from cat mars.txt
reflects only content
added during this exercise. Your output may vary.
-
+
If needed, move out of the planets
folder:
@@ -2438,7 +2438,7 @@ Recovering Older Versions of a File
Show me the solution
-
+
The answer is (5)-Both 2 and 4.
The restore
command restores files from the repository,
@@ -2494,7 +2494,7 @@
Reverting a Commit
Show me the solution
-
+
The command git log
lists project history with commit
IDs.
@@ -2557,7 +2557,7 @@ OUTPUT<
-
+
The answer is 2.
The command git add venus.txt
places the current version
@@ -2621,7 +2621,7 @@
Getting Rid of Staged Changes
Show me the solution
-
+
After adding a change, git restore
can not be used
directly. Let’s look at the output of git status
:
@@ -2924,7 +2924,7 @@ BASH
Show me the solution
-
+
If you only want to ignore the contents of
results/plots
, you can change your .gitignore
@@ -2965,7 +2965,7 @@
Including Specific Files
Show me the solution
-
+
You would add the following two lines to your .gitignore:
@@ -3014,7 +3014,7 @@ BASH
Show me the solution
-
+
If you want to ignore the contents of results/
but not
those of results/data/
, you can change your
@@ -3062,7 +3062,7 @@
BASH
Show me the solution
-
+
Appending results/data/position/gps/*.csv
will match
every file in results/data/position/gps
that ends with
@@ -3100,7 +3100,7 @@
BASH
Show me the solution
-
+
In the .gitignore
file, write:
@@ -3139,7 +3139,7 @@ BASH
Show me the solution
-
+
The !
modifier will negate an entry from a previously
defined ignore pattern. Because the !*.csv
entry negates
@@ -3183,7 +3183,7 @@
Log Files
Show me the solution
-
+
If needed, move out of the planets
folder:
Recovering Older Versions of a File
Show me the solution
-
+
The answer is (5)-Both 2 and 4.
The restore
command restores files from the repository,
@@ -2494,7 +2494,7 @@
Reverting a Commit
Show me the solution
-
+
The command git log
lists project history with commit
IDs.
@@ -2557,7 +2557,7 @@ OUTPUT<
-
+
The answer is 2.
The command git add venus.txt
places the current version
@@ -2621,7 +2621,7 @@
Getting Rid of Staged Changes
Show me the solution
-
+
After adding a change, git restore
can not be used
directly. Let’s look at the output of git status
:
@@ -2924,7 +2924,7 @@ BASH
Show me the solution
-
+
If you only want to ignore the contents of
results/plots
, you can change your .gitignore
@@ -2965,7 +2965,7 @@
Including Specific Files
Show me the solution
-
+
You would add the following two lines to your .gitignore:
@@ -3014,7 +3014,7 @@ BASH
Show me the solution
-
+
If you want to ignore the contents of results/
but not
those of results/data/
, you can change your
@@ -3062,7 +3062,7 @@
BASH
Show me the solution
-
+
Appending results/data/position/gps/*.csv
will match
every file in results/data/position/gps
that ends with
@@ -3100,7 +3100,7 @@
BASH
Show me the solution
-
+
In the .gitignore
file, write:
@@ -3139,7 +3139,7 @@ BASH
Show me the solution
-
+
The !
modifier will negate an entry from a previously
defined ignore pattern. Because the !*.csv
entry negates
@@ -3183,7 +3183,7 @@
Log Files
Show me the solution
-
+
The answer is (5)-Both 2 and 4.
The restore
command restores files from the repository,
@@ -2494,7 +2494,7 @@
Reverting a Commit
Show me the solution
-
+
The command git log
lists project history with commit
IDs.
@@ -2557,7 +2557,7 @@ OUTPUT<
-
+
The answer is 2.
The command git add venus.txt
places the current version
@@ -2621,7 +2621,7 @@
Getting Rid of Staged Changes
Show me the solution
-
+
After adding a change, git restore
can not be used
directly. Let’s look at the output of git status
:
@@ -2924,7 +2924,7 @@ BASH
Show me the solution
-
+
If you only want to ignore the contents of
results/plots
, you can change your .gitignore
@@ -2965,7 +2965,7 @@
Including Specific Files
Show me the solution
-
+
You would add the following two lines to your .gitignore:
@@ -3014,7 +3014,7 @@ BASH
Show me the solution
-
+
If you want to ignore the contents of results/
but not
those of results/data/
, you can change your
@@ -3062,7 +3062,7 @@
BASH
Show me the solution
-
+
Appending results/data/position/gps/*.csv
will match
every file in results/data/position/gps
that ends with
@@ -3100,7 +3100,7 @@
BASH
Show me the solution
-
+
In the .gitignore
file, write:
@@ -3139,7 +3139,7 @@ BASH
Show me the solution
-
+
The !
modifier will negate an entry from a previously
defined ignore pattern. Because the !*.csv
entry negates
@@ -3183,7 +3183,7 @@
Log Files
Show me the solution
-
+
The command git log
lists project history with commit
IDs.
OUTPUT<
-
+
The answer is 2.
The command git add venus.txt
places the current version
@@ -2621,7 +2621,7 @@
Getting Rid of Staged Changes
Show me the solution
-
+
After adding a change, git restore
can not be used
directly. Let’s look at the output of git status
:
@@ -2924,7 +2924,7 @@ BASH
Show me the solution
-
+
If you only want to ignore the contents of
results/plots
, you can change your .gitignore
@@ -2965,7 +2965,7 @@
Including Specific Files
Show me the solution
-
+
You would add the following two lines to your .gitignore:
@@ -3014,7 +3014,7 @@ BASH
Show me the solution
-
+
If you want to ignore the contents of results/
but not
those of results/data/
, you can change your
@@ -3062,7 +3062,7 @@
BASH
Show me the solution
-
+
Appending results/data/position/gps/*.csv
will match
every file in results/data/position/gps
that ends with
@@ -3100,7 +3100,7 @@
BASH
Show me the solution
-
+
In the .gitignore
file, write:
@@ -3139,7 +3139,7 @@ BASH
Show me the solution
-
+
The !
modifier will negate an entry from a previously
defined ignore pattern. Because the !*.csv
entry negates
@@ -3183,7 +3183,7 @@
Log Files
Show me the solution
-
+
The answer is 2.
The command git add venus.txt
places the current version
@@ -2621,7 +2621,7 @@
Getting Rid of Staged Changes
Show me the solution
-
+
After adding a change, git restore
can not be used
directly. Let’s look at the output of git status
:
@@ -2924,7 +2924,7 @@ BASH
Show me the solution
-
+
If you only want to ignore the contents of
results/plots
, you can change your .gitignore
@@ -2965,7 +2965,7 @@
Including Specific Files
Show me the solution
-
+
You would add the following two lines to your .gitignore:
@@ -3014,7 +3014,7 @@ BASH
Show me the solution
-
+
If you want to ignore the contents of results/
but not
those of results/data/
, you can change your
@@ -3062,7 +3062,7 @@
BASH
Show me the solution
-
+
Appending results/data/position/gps/*.csv
will match
every file in results/data/position/gps
that ends with
@@ -3100,7 +3100,7 @@
BASH
Show me the solution
-
+
In the .gitignore
file, write:
@@ -3139,7 +3139,7 @@ BASH
Show me the solution
-
+
The !
modifier will negate an entry from a previously
defined ignore pattern. Because the !*.csv
entry negates
@@ -3183,7 +3183,7 @@
Log Files
Show me the solution
-
+
After adding a change, git restore
can not be used
directly. Let’s look at the output of git status
:
BASH
Show me the solution
-
+
If you only want to ignore the contents of
results/plots
, you can change your .gitignore
@@ -2965,7 +2965,7 @@
Including Specific Files
Show me the solution
-
+
You would add the following two lines to your .gitignore:
@@ -3014,7 +3014,7 @@ BASH
Show me the solution
-
+
If you want to ignore the contents of results/
but not
those of results/data/
, you can change your
@@ -3062,7 +3062,7 @@
BASH
Show me the solution
-
+
Appending results/data/position/gps/*.csv
will match
every file in results/data/position/gps
that ends with
@@ -3100,7 +3100,7 @@
BASH
Show me the solution
-
+
In the .gitignore
file, write:
@@ -3139,7 +3139,7 @@ BASH
Show me the solution
-
+
The !
modifier will negate an entry from a previously
defined ignore pattern. Because the !*.csv
entry negates
@@ -3183,7 +3183,7 @@
Log Files
Show me the solution
-
+
If you only want to ignore the contents of
results/plots
, you can change your .gitignore
@@ -2965,7 +2965,7 @@
Including Specific Files
Show me the solution
-
+
You would add the following two lines to your .gitignore:
@@ -3014,7 +3014,7 @@ BASH
Show me the solution
-
+
If you want to ignore the contents of results/
but not
those of results/data/
, you can change your
@@ -3062,7 +3062,7 @@
BASH
Show me the solution
-
+
Appending results/data/position/gps/*.csv
will match
every file in results/data/position/gps
that ends with
@@ -3100,7 +3100,7 @@
BASH
Show me the solution
-
+
In the .gitignore
file, write:
@@ -3139,7 +3139,7 @@ BASH
Show me the solution
-
+
The !
modifier will negate an entry from a previously
defined ignore pattern. Because the !*.csv
entry negates
@@ -3183,7 +3183,7 @@
Log Files
Show me the solution
-
+
You would add the following two lines to your .gitignore:
BASH
Show me the solution
-
+
If you want to ignore the contents of results/
but not
those of results/data/
, you can change your
@@ -3062,7 +3062,7 @@
BASH
Show me the solution
-
+
Appending results/data/position/gps/*.csv
will match
every file in results/data/position/gps
that ends with
@@ -3100,7 +3100,7 @@
BASH
Show me the solution
-
+
In the .gitignore
file, write:
@@ -3139,7 +3139,7 @@ BASH
Show me the solution
-
+
The !
modifier will negate an entry from a previously
defined ignore pattern. Because the !*.csv
entry negates
@@ -3183,7 +3183,7 @@
Log Files
Show me the solution
-
+
If you want to ignore the contents of results/
but not
those of results/data/
, you can change your
@@ -3062,7 +3062,7 @@
BASH
Show me the solution
-
+
Appending results/data/position/gps/*.csv
will match
every file in results/data/position/gps
that ends with
@@ -3100,7 +3100,7 @@
BASH
Show me the solution
-
+
In the .gitignore
file, write:
@@ -3139,7 +3139,7 @@ BASH
Show me the solution
-
+
The !
modifier will negate an entry from a previously
defined ignore pattern. Because the !*.csv
entry negates
@@ -3183,7 +3183,7 @@
Log Files
Show me the solution
-
+
Appending results/data/position/gps/*.csv
will match
every file in results/data/position/gps
that ends with
@@ -3100,7 +3100,7 @@
BASH
Show me the solution
-
+
In the .gitignore
file, write:
@@ -3139,7 +3139,7 @@ BASH
Show me the solution
-
+
The !
modifier will negate an entry from a previously
defined ignore pattern. Because the !*.csv
entry negates
@@ -3183,7 +3183,7 @@
Log Files
Show me the solution
-
+
In the .gitignore
file, write:
BASH
Show me the solution
-
+
The !
modifier will negate an entry from a previously
defined ignore pattern. Because the !*.csv
entry negates
@@ -3183,7 +3183,7 @@
Log Files
Show me the solution
-
+
The !
modifier will negate an entry from a previously
defined ignore pattern. Because the !*.csv
entry negates
@@ -3183,7 +3183,7 @@