본문 바로가기

github

[ 협업하기] 다른 사람이 만든 깃 pull하기

[다른 사람이 만든 깃  처음 pull하기]

# Git pull → push

 

0.원하는 파일에서 깃생성(git init할 파일만들고 그 경로에 들어가서 git init하기)

git init

1. git pull [https://github.com/pororo-poscoict/document.git](https://github.com/pororo-poscoict/document.git)
2. git remote -v
3. git remote add origin [https://github.com/pororo-poscoict/document.git](https://github.com/pororo-poscoict/document.git)
4. git remote -v
5. git add -A
6. git commit -m "#Pob. [MODIFY] : Data Sample, DDL 2차 데이터 추가”
7. git push origin master

 

 

[내가 리포지터리 생성한채로 git branch따기]

1.원하는 파일에서 깃생성(git init할 파일만들고 그 경로에 들어가서 git init하기)

git init

2. git bracnh에 내 bracnh만들기

git branch -v 로 현재 위치에 브랜치 뭐있는지 확인 후, 추가

git branch [luppy(원하는 이름)]

3. git pull https://github.com/pororo-poscoict/FE-Dev.git(깃리포지터리생성주소)

4. git switch luppy하고 push진행하기

 

 

[git clone하기]

1. 원하는 파일 가기 git clone https://github.com/pororo-poscoict/GlobalSCM.git

2. 다운받아진 폴더로 이동 cd .\GlobalSCM\

3. git branch -v로 현재 위치에 브랜치 뭐 있는지 확인

4. git checkout -t origin/luppy ->하면 switched to new a branch 'luppy'라고 뜸

5. git switch master -> 마스터로 바꾸기

6. git push origin luppy -> luppy로 push 하기

7. git branch -v확인후 -> git switch luppy로 luppy로 바꾸기

8. git pull origin master -> luppy에서 master꺼 pull하기

9. git add -A

10. git commit -m "Lup.[ADD]: init"

11. git push origin luppy

 

 

[일반적인 clone]

1. 원하는 파일에 들어가기(생성X)

2. git clone https://github.com/pororo-poscoict/GlobalSCM.git

(git에 있는 파일이름으로 파일이름이 새로 생성될 것임)

3.  cd .\GlobalSCM\ -> 생성된 파일로 가기

4. git branch luppy -> git에서 branch 따기

5. git switch luppy 

 

 

 

 

'github' 카테고리의 다른 글

[github]vscode에서 github에 commit /pull /메세지 적기  (0) 2022.02.17