Skip to content

Instantly share code, notes, and snippets.

View himedlooff's full-sized avatar

Mike Morici himedlooff

View GitHub Profile
<a href="#" class="btn">Anchor Tag</a>
<button class="btn">Button Tag</button>
<input type="submit" value="Input Tag" class="btn" />
Changing stuff locally and pushing it to github
1. "make a change"
2. "add changes" `$ git add .`
3. "make a commit" `$ git commit -m "add message here"`
4. "push changes to github" `$ git push`
Getting new stuff
1. First make sure any local changes are added and commited like above.