GIT

DevOps/Git & Github

[Git] Authentication failed for ~ user a personal access token instead 에러

문제발생 Linux에서 Github를 사용하다 아래와 같은 에러가 발생하였다. 원인 해당 오류는 2021년 8월 이후로 git pull을 진행할 때 ID/Password 방식이 아닌 token을 이용하여 로그인을 하기 때문에 발생한다. 즉, password가 아닌 token값을 입력해야 한다. 해결방법 0. Github에 로그인한다. GitHub: Let’s build from here GitHub is where over 100 million developers shape the future of software, together. Contribute to the open source community, manage your Git repositories, review code like a pro, t..

DevOps/Git & Github

[Git] fatal: couldn’t remote ref master 에러

문제 발생 git pull origin master를 입력했더니 에러가 발생하였다. $ git pull origin master fatal: couldn’t remote ref master 원인 Github의 기본 생성 브렌치 이름이 입력한 이름과 달라서 발생하였다. 즉, $ git pull origin master 에서 master가 아닌 main으로 명령을 진행했어야 했다. 해결 방법 확인한 브렌치의 name으로 pull 명령을 다시 진행하거나, 리포지토리에서 브렌치 name을 변경하는 방법이 있다. 적용이 완료되었다.

DevOps/Git & Github

[Git] failed to push some refs to ... 에러

문제 발생 git bash를 이용하여 github에 유니티 프로젝트를 올리는 중 에러 메세지가 발생하였다. $ git push origin main To https:///github.com/chanW-pack/soo_project.git ! [rejected] main -> main (fetch first) error: failed to push some refs to 'https://github.com/chanW-pack/soo_project.git' hint: Updates were rejected because the remote contains work that you do hint: not have locally. This is usually caused by another repository ..

DevOps/Git & Github

[Git] Git과 Github

버전관리 버전 관리란 시간에 따라 파일의 변경사항을 추적하고 기록하는 것이다. 버전 관리는 파일의 변경이 있을 때마다 snapshot을 찍고, 필요한 것을 복구하거나 다양한 버전을 확인할 수 있다. 이로 인해 개발자 간의 협업을 위해 개발 소스를 공유하며 파트를 나누어 작업할 수 있다. Git git은 클라우드가 아닌 본인의 로컬 시스템에 설치되고 관리된다. 파일의 변경사항을 추적하고 기록하는 것을 도와주는 분산 버전 관리를 지원하며 코드 충돌을 방지하고 변경사항을 추적하는 등의 작업이 가능하다. 또한 이전 버전으로 되돌리는 등의 작업도 가능하다. 그러나 개인적인 공간(로컬 저장소)를 사용하기 때문에 타인이 실시간으로 내가 작업하는 내용을 알 수 없다. Github github는 Git을 이용하여 협업 ..

cwpack0730
'GIT' 태그의 글 목록