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: learners/reference.md
+14-2Lines changed: 14 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -13,6 +13,13 @@ title: 'Git Cheatsheets for Quick Reference'
13
13
14
14
## Glossary
15
15
16
+
[branch]{#branch}
17
+
: A [branch](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/about-branches)
18
+
is a pointer to a [commit](#commit).
19
+
When you want to develop new changes
20
+
you create a branch.
21
+
The default branch in GitHub is `main`.
22
+
16
23
[changeset]{#changeset}
17
24
: A group of changes to one or more files that are or will be added
18
25
to a single [commit](#commit) in a [version control](#version-control)
@@ -31,6 +38,13 @@ that is incompatible with changes made by other users.
31
38
Helping users [resolve](#resolve) conflicts
32
39
is one of version control's major tasks.
33
40
41
+
[fork]{#fork}
42
+
: A GitHub [fork](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/working-with-forks/fork-a-repo)
43
+
is a copy of a [repository](#repository).
44
+
It is used to develop changes freely without
45
+
affecting the original project repository, or
46
+
when you don't have write access on the original repository.
47
+
34
48
[HTTP]{#http}
35
49
: The Hypertext Transfer [Protocol](#protocol) used for sharing web pages and other data
36
50
on the World Wide Web.
@@ -77,5 +91,3 @@ small.
77
91
Each set of changes creates a new [commit](#commit) of the files;
78
92
the version control system allows users to recover old commits reliably,
79
93
and helps manage conflicting changes made by different users.
0 commit comments