0627
💡 Git for 공동개발, 버전 관리
https://www.notion.so/0627-acca7ad0163445f5aa9608cf5dcb0f8c
설치
- 슬랙
- VScode
- wakatime
- (homebrew-) git
github 연결
- for 프로젝트,버전 관리
- 메뉴
- issues
- Pull reguests - 협업용
- Actions - CI/CD 자동배포
- repository 생성
mkdir github
cd github
git config --global init.defaultBranch main
git init
git config --global core.autocrlf input
//개행문자 관련 처리
git 영역 & 명령어
git status
git log
Working Directory(작업공간)
git **add**
- git add . 모든파일
Staging
git **commit**
- git commit -m “커밋메세지”
- “study: “
Local repository
git **remote** add origin 원격저장소 연결
git **push** origin master ****
Remote Repository(원격저장소)
git **pull**
앞으로..)
html/css/JS
서버 깃 도커