GIT3 git push / pull - ssh key 입력 스킵 ./~zshrc ssh-add ~/.ssh/id_rsa 를 추가해준뒤 source ./~zshrc 2024. 5. 27. 내가 쓰려고 모아두는 자주 사용하는 Git 명령어 모음집 1-1. 초기 세팅 (로컬저장소 > 원격저장소 업로드) echo "# ~ " > README…md git init git add README. md git commit -m "first commit" git branch -M main git remote add origin 주소 git push -u origin main 1-2. 초기 설정 (원격저장소 > 로컬저장소 복제) git clone 2. commit & push git add . git commit -m "~" git push -u origin develop * [rejected] master -> master (non-fast-forward) 해결 방법 git push -u origin +develop 3. Pull git pull origin.. 2024. 3. 16. Git push > fatal: Authentication failed for ... / Permission denied (publickey). 해결 remote: Support for password authentication was removed on August 13, 2021. remote: Please see https://docs.github.com/get-started/getting-started-with-git/about-remote-repositories#cloning-with-https-urls for information on currently recommended modes of authentication. git push -u origin main 명령어 이후 계정과 비밀번호를 정확히 입력해도 위 fatal: Authentication failed for ... 오류가 노출되면서 Push가 불가한 현상이 있었다. 원래 https.. 2024. 3. 15. 이전 1 다음