SOURCE CODE MANAGEMENT Flashcards

1
Q

What are Source Code Management tools?

A

Source Code Management tools like Git manage changes to source code over time.

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

Which Source Code Management tools are you familiar with?

A

currently, I am most familiar with Git

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

How do you upload an object to the Git repository?

A

You upload objects to a Git repository using “git add” to stage changes and “git commit” to save them to the repository.

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

What is a repository in Git?

A

A repository in Git is a storage location for a project’s source code history and branches.

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

What language is used in Git?

A

Git uses its own command language for operations like committing changes, branching, and merging.

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

How can you create a repository in Git?

A

You can create a repository in Git using the “git init” command in a directory containing your project files.

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