Quiz 2 Flashcards
In Git this is the process that allows you to push code into the branch you’re working in?
Commit
What does SCM stand for?
Source Control Management
Which of the following Git commands creates a new branch called new_branch
git branch new branch
In Git, this is the process that allows you to push code into a branch from another
Pull Request
Which of the following traits/habits are good to have as a developer (select all that apply)
a) Manage your own tasks/checklists
b) Write things using as many cool/complex functions to save you lines of code
c) Plan for the future when coding
d) Ask questions when needed
a, c, d
Which of the following steps should you follow when going from start to finish for coding?
a) Write your code by building everything at once and jumping around
b) Test your code after every section
c) Map out your code by creating comments that list out all the functionality you’ll need
d) Create an outline of what your end product should roughly look like
b, c, d
Github uses______to contain project files and allow developers to work on files together.
Repositories
What’s the biggest advantage of Git?
a) Stop overwriting other’s code
b) Has version history and control
c) Collaborates your projects in a central location
d) All of the above
d) All of the above