프로그래밍/우분투 ubuntu

[우분투] git 설치 및 Vs code 연결

복습 2024. 5. 26. 13:52
728x90

 

https://git-scm.com/download/linux

 

Git

Download for Linux and Unix It is easiest to install Git on Linux using the preferred package manager of your Linux distribution. If you prefer to build from source, you can find tarballs on kernel.org. The latest version is 2.45.1. Debian/Ubuntu For the l

git-scm.com

 

 

터미널을 결고 아래의 명령어를 입력한다. 

sudo add-apt-repository ppa:git-core/ppa

sudo apt update

sudo apt install git

 

 

위 명령어들은 다음을 수행합니다:

  • sudo add-apt-repository ppa:git-core/ppa: Git의 최신 버전을 제공하는 PPA를 추가합니다.
  • sudo apt update: 패키지 목록을 업데이트합니다.
  • sudo apt install git: Git을 설치합니다.

이 과정이 끝나면 최신 버전의 Git이 설치될 것입니다. Git이 올바르게 설치되었는지 확인하려면, 다음 명령어를 사용하여 Git 버전을 확인할 수 있습니다:

 

이 명령어를 실행하면 설치된 Git의 버전이 출력될 것입니다. 예를 들어, "git version 2.45.0"와 같은 결과를 확인할 수 있습니다.

 

 

 

다음으로 터미널을 열고 

git config --list 


git config --global user.name "Name"

git config --global user.email "E-mail"

 

 

 

참고 : 

https://xangmin.tistory.com/102

 

윈도우에서 Git Bash 설치하기

1. 설치 파일 다운로드 Windows에서 Git을 사용하기 위한 GitBash를 설치한다. (2.30 버전) Git Bash 설치 파일을 받기 위해 공식 홈페이지(https://git-scm.com/)에서 다운로드 한다. 다운로드 완료 후 설치 파일

xangmin.tistory.com

 

 

https://velog.io/@ahnsanghyeon/VSCode%EC%97%90%EC%84%9C-Git-%EC%97%B0%EB%8F%99%ED%95%98%EA%B8%B0

 

VSCode에서 Git 연동하기 (가장 쉬운 방법)

소스코드 관리 도구 Git을 사용하여, GitHub와 연동하면 변경된 코드를 쉽게 확인할 수 있습니다. 버전 히스토리를 지원하며, 개발자 포트폴리오의 용도로 많이 사용됩니다. 많이 쓰는 에디터 VSCode

velog.io

 

 

728x90