git init을 했을 때 다음과 같이 hint들이 나올때가 있다.
기본 브런치를 설정하라는 내용이다.
hint에 적혀있는대로 아래와같이 default branch를 설정해준다.
(저는 main이 아닌 master로 했습니다)
$ git config --global init.defaultBranch master
Node.js의 버전 관리를 위한 도구인 NVM을 먼저 설치한다.
$ sudo apt-get install -y curl
$ curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.11/install.sh | bash
$ source ~/.bashrc
$ nvm list-remote
$ nvm install <원하는 버전>
npm은 node.js 설치 시 자동 설치되므로, 별도의 설치가 필요없다.
하지만, 최신버전이 아닐 수 있으므로 다음과 같은 방법으로 업데이트를 해준다.
$ npm install -g npm@latest