본문 바로가기
source-code/software

기본 환경설정하기

by mattew4483 2021. 3. 31.
728x90
반응형

1. VS code

비주얼 스튜디오 코드.

간단히 말해 코드 작성을 좀 더 용이하게 만들어주는 코드 편집기라 할 수 있다.

 

제일 먼저 Visual Studio 홈페이지에 접속!

code.visualstudio.com/download

 

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

 

설치 페이지에 들어가, 운영체제에 맞는 버전을 다운로드!

 

별다른 수정 없이 다음!

 

그럼 큰 특이사항 없이 설치가 완료된다. Visual Studio 실행!

 

한국말이 더 익숙한 사람은 Korean Language Pack을 먼저 깔아주자.

 

사용법도 친절히 나와 있다.

 

Ctrl+shift+p로 검색! 

display를 쳐서 표시 언어 구성을 ko로 변경해주면 끝!

 

확장 기능에서 python을 검색한 후 설치!

 

화면 공유를 통한 코드 리뷰를 위해 Live Share도 설치해준다.

 

VS code 환경 설정 끝! (으잉..?)

 

2. Git

Git이 뭘까?

→ 개발 진행 과정마다 분기점을 만들어, 필요할 경우 그 지점으로 갈 수 있도록 만든 것.

 

그럼 GitHub는?

Git은 혼자 작업한 내용을 저장하는 곳.

GitHub는 Git의 정보를 다른 사람과 공유하는 원격 저장소 → 개발 협업 툴!

 

1. GitHub 회원가입

역시 제일 먼저 GitHub 홈페이지에 접속!

github.com/

 

GitHub: Where the world builds software

GitHub is where over 56 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

회원가입을 해야 하니 Sign up을 클릭해주자.

Username, Email address, Password도 설정.

→ 곧 이 녀석들을 써야하니 까먹지 말자!

회원가입이 완료됬으면 신나게 Sign in !

 

2. Git 설치

GitHub에 회원가입 했다고 끝이 아니다!

기본적으로 우리가 이용하고 싶은건 Git이니... 요 녀석을 설치해주자.

git-scm.com/downloads

 

Git - Downloads

Downloads macOS Windows Linux/Unix Older releases are available and the Git source repository is on GitHub. GUI Clients Git comes with built-in GUI tools (git-gui, gitk), but there are several third-party tools for users looking for a platform-specific exp

git-scm.com

역시 운영체제에 맞는 버전을 다운받으면 된다.

 

그럼 이렇게 설치 시작!

 

따로 설정없이 Next!

 

Git의 default editor를 그대로 사용하자. Next!

 

이후 별 다른 수정없이 기본(선택되어 있는 사항)설정을 선택!

 

Install을 누르면 이렇게 설치가 진행된다.

 

Realease Notes는 보지말고, Git Bash를 실행해주자!

 

그럼 이렇게 Git의 프롬포트 창이 뜬다!

git --version을 통해 설치가 잘 됬는지 확인해주자.

처음 Git을 설치하면 username과 email이 null로 설정되어있다!

따라서 아까 가입했던 username과 email을 전역적으로 설정해주자.

 

입력하면 아무 일도 안 일어나는데, 해당 명령어로 잘 설정되었는지 확인할 수 있다.

 

성공이다!

 

 

728x90
반응형

'source-code > software' 카테고리의 다른 글

GitHub로 배포하기  (0) 2021.04.06
Web Service 기초  (1) 2021.04.04
Git Repository 초기화하기  (0) 2021.03.31
GitHub 오류 모음  (1) 2021.02.21
GitHub 기본 명령어 익히기  (0) 2021.02.20