준호씨의 블로그

Windows 10 개발환경 세팅하기 - Visual Studio Code, git 본문

개발이야기

Windows 10 개발환경 세팅하기 - Visual Studio Code, git

준호씨 2021. 9. 19. 21:53
반응형

오랜 기간 맥에서 개발환경을 세팅하다 보니 윈도우 OS환경에서 세팅하려니 익숙하지 않네요. 하나씩 정리해 보려 합니다.

WSL2를 먼저 세팅하면 우분투 리눅스 커맨드로 좀 더 손쉽게 할 수 있을 거 같긴 한데 일단은 그냥 모드로 설치해봅니다.

 

Visual Studio Code 설치

일단 개발용 에디터가 필요합니다. 회사에서는 Jetbrain Tools (IntelliJ, WebStorm 등)을 사용하지만 개인용 라이선스는 없어서 Visual Studio Code에 적응해 보려고 합니다.

Download Visual Studio Code - Mac, Linux, Windows

 

Download Visual Studio Code - Mac, Linux, Windows

Visual Studio Code is free and available on your favorite platform - Linux, macOS, and Windows. Download Visual Studio Code to experience a redefined code editor, optimized for building and debugging modern web and cloud applications.

code.visualstudio.com

에서 다운로드하여서 설치합니다.

brew 명령어처럼 간단하게 설치할 방법이 있을 거 같긴 한데 좀 찾아봐야겠습니다.

 

git 설치

요즘은 버전 관리는 대부분 git을 사용하고 있어서 git을 설치합니다.

Git - Downloading Package (git-scm.com)

 

Git - Downloading Package

Downloading Git Now What? Now that you have downloaded Git, it's time to start using it.

git-scm.com

에서 다운로드하여서 설치합니다.

 

ssh key 생성 및 github 등록

평소 사용하던 커맨드로 생성했습니다.

ssh-keygen -t rsa -b 4096

C:\Users\junho85\.ssh 디렉터리에 키가 생성이 되었습니다.

id_rsa.pub의 값을 github에 등록합니다.

SSH and GPG keys (github.com)

 

GitHub: Where the world builds software

GitHub is where over 65 million developers shape the future of software, together. Contribute to the open source community, manage your Git repositories, review code like a pro, track bugs and feat...

github.com

에서 등록하면 됩니다.

 

git을 사용할 수 있는 환경까지 만들었으나 git clone을 할 때 invalide path에러가 발생하네요. 역시 WSL2 세팅을 해야 되겠습니다.

반응형
Comments