Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 | 31 |
Tags
- docker
- github
- azure deveops
- slack
- azure devops
- AWS
- 데이터타입
- 배포자동화
- 클라우드
- 배포
- Pull
- deveops
- 조인
- PIPELINE
- 리액트
- 데브옵스
- CI/CD
- 마이에스큐엘
- git
- Azure
- CSS
- devops
- aws devops
- node.js
- 자동화
- MySQL
- 도커
- 자동배포
- react
- nginx
Archives
- Today
- Total
Full_Stack developer
GIT 본문
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 )
Git
git-scm.com
Git 설치하기 ( MAC )
- 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 회원 가입 및 로그인
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