Getting started with Git

Let's begin git init — creates repository. git init newproject — creates and names repository. git add — add file for git to track. git commit -a -m "note here" — commit all changes and add commit note. git status — prints status based on what's changed since you last committed. touch file1 file2 file3…