git 3

[git error]git push 오류 해결, Updates were rejected because the tip of your current branch is behind

로컬 저장소에서 원격저장소(github)로 push하는데, error발생 hint:Updates were rejected because a pushed branch tip is behind its remote counterpart. hint: its remote counterpart. Integrate the remote changes (e.g. hint: 'git pull ...') before pushing again. hint: See the 'Note about fast-forwards' in 'git push --help' for details. 문제원인 github repository를 생성할 때, README.md 파일을 생성(Add a README file)했기 때문이라는 구글링 결과 문제..

git 2021.07.20

git 사용법 (원격 저장소)

Git Git은 분산버전관리시스템(DVCS, Distributed Version Control System)이다. 소스코드의 버전 및 이력을 관리할 수 있다. 준비하기 윈도우에서 git을 활용하기 위해서 git bash를 설치한다. git을 활용하기 위해서 GUI 툴인 source tree, github desktop 등을 활용할 수도 있다. 초기 설치를 완료한 이후에 컴퓨터에 author정보를 입력한다. 현재 성정된 계정 정보 확인 $ git config user.name $ git config user.email명령을 통해 계정 바꾸기 $ git config --global user.name 변경계정 $ git config --global user.email 변경이메일원격 저장소(remote repo..

git 2021.07.20

git 사용법 (로컬 저장소)

Git Git은 분산버전관리시스템(DVCS, Distributed Version Control System)이다. 소스코드의 버전 및 이력을 관리할 수 있다. 준비하기 윈도우에서 git을 활용하기 위해서 git bash를 설치한다. git을 활용하기 위해서 GUI 툴인 source tree,github desktop 등을 활용할 수도 있다. 초기 설치를 완료한 이후에 컴퓨터에 author정보를 입력한다. 현재 성정된 계정 정보 확인 $ git config user.name $ git config user.email명령을 통해 계정 바꾸기 $ git config --global user.name 변경계정 $ git config --global user.email 변경이메일로컬 저장소(repository) ..

git 2021.07.20