Section three Flashcards

1
Q

Create a Git repository

A

In VSC, click the lines with three dots under the magnifying glass on the left hand side. Initialize on the folder you choose.

U - You’ll see this by a file that is untracked (not added to repo)

Hover over the file and click plus. This will stage it and turn the U into an A.

A - new file added to repo

To commit, type a message up top as a description. Now you can click the checkmark.

If you need to log in, click the terminal tab and type in
git config –global user.name “John Doe”

git config –global user.email “johndoe@email.com”

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

What is a branch? How do you make one?

A

^p will show you all your branches
New branches are used when you want to add to your code, like new features.

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