Full_Stack developer

GIT 본문

FE/HTML

GIT

develkbh 2024. 2. 21. 14:17

 


VS 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


VSCode 확장 프로그램 설치

 


Git ??

  • Git 이란?
    • 소스 코드를 효율적으로 관리하기 위해 만들어진 “버전 관리 시스템”
  • 사용 이유?
    • 소스 코드의 변경 이력을 쉽게 확인 특정 시점에 저장된 버전과 비교하거나 특정 시점으로 돌아가기 위해

Git 설치하기 ( Window )

https://git-scm.com/ 

 

Git

 

git-scm.com


Git 설치하기 ( MAC )

 

https://brew.sh/index_ko 


  • cd Desktop • mkdir github
  • cd github
  • git config --global init.defaultBranch main
  • git config --global user.name “프로필 이름”
  • git config --global user.email “이메일 주소”
  • git config --global --list

Github 회원 가입 및 로그인

 

https://github.com/

 

GitHub: Let’s build from here

GitHub is where over 100 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 fea...

github.com

 

접속 후 회원 가입 & 로그인 하기

 


Gihub에서 Repository 만들고 가져오기

 

Repository 가져오기

 

 

  • git status 
  • git add .
  • git status
  • git commit -m “study: first commit”
  • git log

 

'FE > HTML' 카테고리의 다른 글

tag 종류  (4) 2024.01.25
HTML이란 ??  (1) 2024.01.25