Skip to content

Latest commit

 

History

History
52 lines (36 loc) · 1.81 KB

README.md

File metadata and controls

52 lines (36 loc) · 1.81 KB

Git-CheatSheet

This Cheat Sheet is a collection of commonly used git commands and their easy to understand and precise descriptions.

Quick Start:

  • Fork and Clone this repo using the following command:
$ git clone https://github.com/bellatrixdatacommunity/Git-CheatSheet/
$ cd Git-CheatSheet
  • Make a new branch using following command:
$ git checkout -b "new branch name"
  • Make changes to index.html and append your favorite git command
  • Stage your changes, commit, and push using the following commands:
$ git add .
$ git commit -m "added a git command"
$ git push origin

Resources:

  • FreeCodeCamp Web Development curriculum

Learn HTML, CSS, JS and some advanced topics from the most popular online bootcamp. They also give you a free certificate for completing their training.

Website - https://learn.freecodecamp.org/

  • Intro to HTML and CSS by Udacity

Learn HTML and CSS from a free, premium video course by Udacity.

Website - https://www.udacity.com/course/intro-to-html-and-css--ud001

  • Interneting is Hard

HTML & CSS seems hard (But it doesn’t have to be). This is a friendly web development tutorial for complete beginners.

Website - https://internetingishard.com/html-and-css/

  • Getting Git Right

Git is a free and open source version control system, originally created by Linus Torvalds in 2005. This is a great tutorial on git and GitHub.

Website: https://www.atlassian.com/git

  • How To Use Git: A Git Cheat Sheet

This provides a quick reference to commands that are useful for working and collaborating in a Git repository.

Website: https://www.digitalocean.com/community/cheatsheets/how-to-use-git-a-reference-guide