Linux(Ubuntu)에서 깃 연결 하기 / node.js 버전 업데이트 하기

Aneb·2022년 8월 8일
0
post-custom-banner

깃 연결하기 (git init)

git init을 했을 때 다음과 같이 hint들이 나올때가 있다.

기본 브런치를 설정하라는 내용이다.
hint에 적혀있는대로 아래와같이 default branch를 설정해준다.
(저는 main이 아닌 master로 했습니다)

$ git config --global init.defaultBranch master

Node.js 버전 업데이트 하기

1. NVM 설치하기

Node.js의 버전 관리를 위한 도구인 NVM을 먼저 설치한다.

1.1 curl 설치

$ sudo apt-get install -y curl

1.2 NVM 설치

$ curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.11/install.sh | bash

1.3 터미널 종료 없이 수정된 .bashrc 적용

$  source ~/.bashrc

1.4 설치가 잘 되었다면, 설치 가능한 노드 버전 확인 가능

$   nvm list-remote

2. Node.js 버전 업데이트

2.1 특정 버전의 node.js 설치

$   nvm install <원하는 버전>

2.2 npm 업데이트

npm은 node.js 설치 시 자동 설치되므로, 별도의 설치가 필요없다.
하지만, 최신버전이 아닐 수 있으므로 다음과 같은 방법으로 업데이트를 해준다.

$ npm install -g npm@latest
profile
FE Developer
post-custom-banner

0개의 댓글