You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: foundations/beta.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,7 @@ git version 1.8.2
21
21
22
22
23
23
#### Git key vocabulary
24
-
Three important words that are key to learning Git are:
24
+
Three important words key to learning Git are:
25
25
26
26
* Repository
27
27
* Commit
@@ -75,7 +75,7 @@ GitHub is the repository hosting, collaboration, deployment, and distribution pl
75
75
76
76
GitHub accounts are free for an unlimited quantity of public repositories. Only private repositories cost to host on the service. Private repositories are typically used for closed-source consulting client or corporate products, whereas public repositories are typically used for open source.
77
77
78
-
Sign up for a free GitHub account at https://github.com/join.
78
+
Sign up for a free GitHub account at [github.com/join](https://github.com/join).
79
79
80
80
Git can be installed as a unified GitHub GUI and command line or merely as a stand-alone command line interface.
81
81
@@ -146,7 +146,7 @@ Repositories can be created in numerous ways, including:
146
146
147
147
#### Details & Resources
148
148
149
-
In many cases, working with a code project means retriving it to the local disk so that you can leverage your language-specific IDE when making changes. To retrieve a repository to the local disk is to `clone` it, in Git parlance. Some of the most common sources and means of cloning include:
149
+
In many cases, working with a code project means retrieving it to the local disk so that you can leverage your language-specific IDE when making changes. To retrieve a repository to the local disk is to `clone` it, in Git parlance. Some of the most common sources and means of cloning include:
150
150
151
151
152
152
{% capture slide %}
@@ -164,7 +164,7 @@ The GitHub Web Flow allows you to:
164
164
{% include slide-section %}
165
165
166
166
167
-
The GitHub Web Flow is a path through the GitHub user interface that facilitates governed, named, and reviewed sets of changes. This flow can be performed entirely from a web browser, with no need to download the code to a desktop machine, and yet still having the benefit of syntax highlighting and pre-merge code reviews and discussions.
167
+
The GitHub Web Flow is a path through the GitHub user interface that facilitates governed, named, and reviewed sets of changes. This flow can be performed entirely from a web browser, with no need to download the code to a desktop machine, and yet still have the benefit of syntax highlighting and pre-merge code reviews and discussions.
168
168
169
169
170
170
@@ -174,12 +174,12 @@ The GitHub Web Flow is a path through the GitHub user interface that facilitates
174
174
{% capture slide %}
175
175
### Local repositories
176
176
177
-
A commit is a transactionally grouped set of changes, described by an brief message explaining the "why" of the attached changes.
177
+
A commit is a transactionally grouped set of changes, described by a brief message explaining the "why" of the attached changes.
178
178
{% endcapture %}
179
179
{% include slide-section %}
180
180
181
181
182
-
Git enables repositories to be created both on GitHub, or locally on a developer's PC. A repository created locally can be synced to a network destination at a later time, preserving all the timestamps and comments in the local commits during the synchronization.
182
+
Git enables repositories to be created both on GitHub, or locally on a developer's computer. A repository created locally can be synced to a network destination at a later time, preserving all the timestamps and comments in the local commits during the synchronization.
A branch is an divergent path in the history of the code base. It may contain an experiment, fix, or enhancement, and is generally intended to be merged back to the `master` branch after being thoroughly reviewed by a colleague.
231
+
A branch is a divergent path in the history of the code base. It may contain an experiment, fix, or enhancement, and is generally intended to be merged back to the `master` branch after being thoroughly reviewed by a colleague.
0 commit comments