Working with Git in the Command Line Flashcards
1
Q
Commands to Install Git
A
yum/dnf install git (red hat or debian)
apt-get install git (Debian)
2
Q
Commands a local repository
A
git init
3
Q
Commands to add and commit files
A
git add, commit or status
4
Q
Commands to branch and merge
A
git branch, checkout, or merge