Can you make some Flash Cards about the keywords...

1
Q

Repository

A

A central location where all files, their versions, and the history of changes within a project are stored.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Init

A

Initializes a new Git repository in a specified directory.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Clone

A

Creates a complete copy of an existing Git repository from a remote server.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Stage

A

Selects changes to files that will be included in the next commit.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Commit

A

Creates a snapshot of the repository at a specific point in time, capturing all the staged changes along with a message describing the changes.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Amend

A

Allows you to modify the most recent commit.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Remote

A

A connection to a repository that is located on another machine or server.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Local Repository

A

A copy of a Git repository that resides on your own computer.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Push

A

Sends local commits to a remote repository.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Pull

A

Fetches changes from a remote repository and merges them into your local branch.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Fetch

A

Downloads objects and references from a remote repository without merging them into your local branches.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Sync

A

Combines git pull and git push into a single operation, fetching changes from a remote repository and then pushing local changes back to the remote.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Stash

A

Temporarily saves uncommitted changes to the working directory, allowing you to revert to a clean working state.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Branch

A

A separate line of development that diverges from the main branch of a repository.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Merge

A

Combines changes from two or more branches into a single branch.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Fast Forward

A

A type of merge where the target branch can be directly moved forward to the tip of the feature branch without creating a new merge commit.

17
Q

Head

A

The currently checked-out commit in Git. It represents the latest point in the branch where you are working.

18
Q

Pull Request

A

A request to merge changes from a forked repository into the main repository.