Git for Beginners

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/11

flashcard set

Earn XP

Description and Tags

A set of flashcards covering essential vocabulary related to Git for beginners.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

12 Terms

1
New cards

Git

A distributed version control system used to track changes in source code during software development.

2
New cards

Repository

A storage location for software packages, which can be local or remote.

3
New cards

Commit

A snapshot of changes made to the files in a repository.

4
New cards

Branch

A parallel version of the repository that diverges from the main working project.

5
New cards

Merge

The process of combining changes from different branches into a single branch.

6
New cards

Pull Request

A request to merge changes from one branch to another in a repository, allowing for review.

7
New cards

Remote Repository

A version of the repository hosted on the internet or a network, enabling collaboration.

8
New cards

Clone

To create a local copy of a remote repository.

9
New cards

Fetch

To download changes from a remote repository to your local repository without merging.

10
New cards

Push

To upload local repository content to a remote repository.

11
New cards

Staging Area

A space to prepare your changes before committing them to the repository.

12
New cards

Working Area

The directory where you are actively making changes to files.