Section three Flashcards
Create a Git repository
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”
What is a branch? How do you make one?
^p will show you all your branches
New branches are used when you want to add to your code, like new features.