This is a README

some text

Agenda

  • Git
  • bash
  • github

Git commands

this is text

code snipts

# Starting a git repo

$ git init 

# Adding files to track 

$ git add .

# Commiting Files 

$ git commit -m "useful comment"

# Git status

$ git status

# Check logs

$ git log

# Git checkout 
## use this to go back in time

$ git checkout <commit>