Skip to content

Latest commit

 

History

History
77 lines (50 loc) · 1.21 KB

dev-install.md

File metadata and controls

77 lines (50 loc) · 1.21 KB

Developer Installations

Configurations

Git

Set Global Email

git config --global user.email "[email protected]"

Verify Global Email

git config --global user.email

VS Code as Git Editor

This will allow you to use VSCode for rebasing, commit messages, interactive adds, and diffing - if you edit the global git config as shown below.

## Set git editor to VSCode
git config --global core.editor "code --wait"
## View Global Git Config
git config --global -e

https://code.visualstudio.com/docs/editor/versioncontrol#_vs-code-as-git-editor

VS Code as Git Diff Tool

## Open Global Git Config
git config --global -e

Add the following to the global git config.

[diff]
    tool = default-difftool
[difftool "default-difftool"]
    cmd = code --wait --diff $LOCAL $REMOTE

https://code.visualstudio.com/docs/editor/versioncontrol#_vs-code-as-git-diff-tool

Installations

Brew

Linux Brew: http://linuxbrew.sh/

Node

Ruby

bundler

sudo apt install ruby-bundler

VSCode

sudo apt install code