Skip to content

System Config

Song Zheng edited this page Sep 26, 2022 · 5 revisions

Intro

This displays the configuration for the system

Git

~/.gitconfig

Adds your info, sets a global .gitignore, and alias.

[user]
  email = ...
  name = ...
[color]
  ui = auto
[pull]
  rebase = true
[core]
  excludesfile = ~/.gitignore
[alias]
  co = checkout
  br = branch
  s = status
  r = remote -v
  d = diff

~/.gitignore

node_modules
build
coverage
dist
.attach_pid**

System Setup

Tutorials

Clone this wiki locally