1. 다른 컴퓨터에서 작업한 혹은 다른 사람이 작업한 깃을 내 컴퓨터에서 다시 다운로드 받아서 작업해야할 경우.
2. 그런데 내 컴퓨터에서도 이미 깃이 있었고, 그걸 초기화한 뒤에 해당 깃을 다운받아서 사용해야했다.
3. 먼저 깃 기본 사용법 부터 다시 확인해봤다.
https://evan-moon.github.io/2019/07/25/git-tutorial/
기본적인 사용법은 위 글에서 자세히 설명하고 있었는데, 딱 필요한 것만 다시 더 찾아봤다.
4. 비어있지 않은 디렉토리에 깃 클론을 실행하는 방법은 무엇입니까.
How do I clone into a non-empty directory?
https://stackoverflow.com/questions/2411031/how-do-i-clone-into-a-non-empty-directory
git init
git remote add origin PATH/TO/REPO
git fetch
git reset origin/master # Required when the versioned files existed in path before "git init" of this repo.
git checkout -t origin/master
5. 자, 이제 기본적인 사용방법은 알았으니, 그 다음은 젯브레인 phpstorm 에서 깃 등록 사용방법에 대해서 찾아봤다.
https://www.jetbrains.com/help/phpstorm/github.html
이 부분은 phpstorm 을 사용하지 않으신 분은 패스하면 됩니다.
6. '다른 깃헙 가져오기 cli'를 좀 더 찾아봤다.
그런데 딱 원하는 건 아니었다...
https://gist.github.com/ZeroDragon/6707408
git init
git remote add origin https|ssh:path/to/the/repository.git
git pull origin master
이대로 따라했다. 그런데,
fatal: ambiguous argument 'origin/master': unknown revision or path not in the working tree.
Use '--' to separate paths from revisions, like this:
이런 오류가 나왔다.
치명적: 모호한 인수 'origin/master': 작업 트리에 알 수 없는 개정 또는 경로가 없습니다.
다음과 같이 '--'를 사용하여 경로를 개정과 구분하십시오.
아마.. origin master 부분이 잘못된거 같았다.
7. 브랜치 네임 확인하기
https://0ver-grow.tistory.com/918
참조
https://on1ystar.github.io/git/2021/02/22/Git-2/
https://junheejang.tistory.com/221
제목 | 날짜 | ||
---|---|---|---|
95 | [MySQL] Mysql Join 해부(Left, Right, Outer, Inner Join) | 154 | 2018/01/03 |
94 | [리눅스서버] Ubuntu 16.04 | root 계정으로 로그인하기, root 계정으로 ssh 접속하기 | 91 | 2018/03/21 |
93 | [리눅스서버] Ubuntu php7.0-fpm 세팅 중 오류 | 76 | 2018/03/25 |
92 | [리눅스서버] mysql strict mode 끄기 | 888 | 2018/03/29 |
91 | nginx https redirect www to non-www | 231 | 2018/04/04 |
90 | [Nginx] nginx-redirects-http-to-https-and-www-to-non-www | 79 | 2018/04/21 |
89 | [Nginx] https가 아닐 경우 https로 리다이렉트하는 방법 | 170 | 2018/04/25 |
88 | [Nginx] [Nginx] Rewriterule 서브 도메인 입력시 하위 디렉토리로 이동하기 | 501 | 2018/05/15 |
87 | [MySQL] MySQL 사용자 테이블 생성 및 연결하기 | 93 | 2018/06/24 |
86 | [기타] G Suite - | 0 | 2018/07/26 |
85 | [리눅스서버] ./configure : /bin/sh^M : bad interpreter [duplicate] | 145 | 2018/07/29 |
84 | [리눅스서버] [쉘스크립트] 새로운 데이터베이스 테이블 생성 및 유저 연결 쉘스크립트 | 568 | 2018/07/29 |