mirror of
https://github.com/pcottle/learnGitBranching.git
synced 2025-07-19 10:14:59 +02:00
Update src/levels/intro/1.js
Fixed a little typo (the all the files)
This commit is contained in:
parent
9d167f986d
commit
86a7b99324
1 changed files with 1 additions and 1 deletions
|
@ -14,7 +14,7 @@ exports.level = {
|
||||||
"options": {
|
"options": {
|
||||||
"markdowns": [
|
"markdowns": [
|
||||||
"## Git Commits",
|
"## Git Commits",
|
||||||
"A commit in a git repository records a snapshot of the all the files in your directory. It\'s like a giant copy and paste, but even better!",
|
"A commit in a git repository records a snapshot of all the files in your directory. It\'s like a giant copy and paste, but even better!",
|
||||||
"",
|
"",
|
||||||
"Git wants to keep commits as lightweight as possible though, so it doesn't just copy the entire directory every time you commit. It actually stores each commit as a set of changes, or a \"delta\", from one version of the repository to the next. That\'s why most commits have a parent commit above them -- you\'ll see this later in our visualizations.",
|
"Git wants to keep commits as lightweight as possible though, so it doesn't just copy the entire directory every time you commit. It actually stores each commit as a set of changes, or a \"delta\", from one version of the repository to the next. That\'s why most commits have a parent commit above them -- you\'ll see this later in our visualizations.",
|
||||||
"",
|
"",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue