Skip to content

Files

Latest commit

49bbf05 · Aug 29, 2021

History

History
This branch is 83 commits behind flexbox/github-bootcamp:main.

setup

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Aug 29, 2021

Bootcamp Setup

System Requirements

macOS

brew install git

Linux

apt-get install git

Windows

Download

Use the following command at your terminal to check your git version.

git --version

If you have a recent version installed, it should do.

Tools of Titans

To work faster and become a comand line power user we are going to use these tools.

oh-my-zsh

Oh My Zsh is a delightful, open source, community-driven framework for managing your Zsh configuration. It comes bundled with thousands of helpful functions, helpers, plugins, themes, and a few things that make you shout...

Installation

sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"

Install some plugins

ZSH allows you to extend built-in functionality by adding plugins. To enable a plugin, open your .zshrc file and add these:

# Useful oh-my-zsh plugins
plugins=(git gitfast common-aliases zsh-syntax-highlighting history-substring-search zsh-autosuggestions zsh-z)

gh

gh is GitHub on the command line. It brings pull requests, issues, and other GitHub concepts to the terminal next to where you are already working with git and your code.

brew install gh