Mi Lugarcito
GIT - 협업 프로젝트 진행하기 본문
git clone/ git pull 차이점
(최초 다운로드 할때는 clone 하고 그 이후 수정/추가 작업할때는 pull 해서 사용)
https://meaownworld.tistory.com/157
https://balsamic-egg.tistory.com/11
https://velog.io/@radical_sign/git-pull-%EC%98%A4%EB%A5%98master-main
https://www.zerocho.com/category/Git/post/581042fdcae2d100152ceae6
https://wayhome25.github.io/git/2017/07/08/git-first-pull-request-story/
최초 프로젝트 처음으로 git clone 하기 (pull 하지 않고 clone한다)
cd plugins // 깃허브 dynamic_factory git clone & composer dump 하기 (중요 코어 플러그인!)
cd plugins
git clone https://github.com/amuzcorp/dynamic_factory.git
composer dump
git clone시 중요 포인트!!!
git branch 중에서 main 말고 master branch 의 gitclone을 해야하는 경우
cd plugins
// 이렇게 하면 자동으로 default로 설정되어 있는 branch 의 깃 코드를 clone 해온다...조심!
// git clone https://github.com/amuzcorp/maemulmoa.git
git clone -b master https://github.com/amuzcorp/maemulmoa.git
cd maemulmoa
composer dump
git repository에서 update된 것 pull 하기
//1. cd로 최상단 폴더가 아닌 풀하고 싶은 상단 폴더로 이동하기
//plugins 폴더에 있는 cd dynamic_factory 폴더로 이동하기
//2. git pull 하기
git clone 후 수정/추가후 push 할 경우
https://ndb796.tistory.com/188
https://chohyeonjunn.tistory.com/74
git add .
git status
git commit -m "message"
git push -u origin main 혹은 git push -u origin master
'GIT' 카테고리의 다른 글
GIT - 깃 연동 해지하기 (0) | 2021.10.15 |
---|---|
Mac) 2021년 8월 13일 부로 GitHub.com에서 Git 작업을 인증 할 때 더 이상 계정 암호를 허용하지 않으며, token-based authentication이 필요 (0) | 2021.08.16 |
GITHUB - Blog 에 포트폴리오 올리기 (0) | 2021.04.08 |
GIT - 기존 깃허브에 올렸던 폴더 삭제하고 재업로드 하기 (0) | 2021.03.14 |
Mac) 콘솔창, 터미널 명령어 정리 (0) | 2021.03.04 |