javascript

1-2. VS Code, Node, git(macOS) 설치

Heoky 2021. 12. 18. 17:08
  1. https://code.visualstudio.com/ 해당 링크를 통해 vscode를 설치한다.


2. node 설치 (최신버전)(링크: https://nodejs.org/ko/)


3. Mac OS 환경에서 git 설치하기

$brew install git
  • git config 설정 (git 계정 설정)
    config를 수정할 때 계정 설정을 할 수 있다. 이 계정 설정을 하게 되면 local 환경에서 git push를 할 때 요구되는 로그인 정보를 생략할 수 있다.
$git config --global user.name "kyh"
$git config --global user.email "kyh@google.com"
$git config --list

위와 같이 설정 시 git config에 user 계정 정보를 설정할 수 있다.