새싹🌱

0627 1회차

idleday 2022. 6. 28. 00:00

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

서버 깃 도커

'새싹🌱' 카테고리의 다른 글

0706 5회차  (0) 2022.07.07
0704 4회차  (0) 2022.07.05
[WIL] 1주차  (0) 2022.07.04
0701 3회차  (0) 2022.07.02
0629 2회차  (0) 2022.06.30