Git (5) 썸네일형 리스트형 git push origin main 시 credential error 발생 에러 메시지 : Missing or invalid credentials. Error: connect ECONNREFUSED '{~~~}' at PipeConnectWrap.afterConnect [as oncomplete] (node:net:1495:16) { errno: -111, code: 'ECONNREFUSED', syscall: 'connect', address: '{~~~}' } ~~~ remote: No anonymous write access. fatal: Authentication failed for '{github repository 주소}' 해결방법 : 새로운 터미널 창 켜서 재시도 이 에러는 왜 뜨는걸까..? 그리고 해결방법이 어이가 없다 [Git] 특정 repository에 폴더 push https://may9noy.tistory.com/709 Another git process seems to be running in this repository, e.g.an editor opened by 'git commit'. Please make sure all processesare terminated then try again. If it still fails, a git processmay have crashed in this repository earlier:remove the file ma.. https://joycestudios.tistory.com/98 [git] 폴더 내부 파일들 commit (git bash가 설치되었다는 가정하에) github에 올리고 싶은 파일들을 담고있는 폴더 오른쪽 클릭 -> git bash Her #1 git init #2 .py file add git add *.py #3 write commit msg git commit -m "py file commit" #4 git branch -M main #5 git remote add origin "github repository 주소" #6 push 했던것들을 원격 저장소에 모두 올리기 git push -u origin main branch 5명 이하의 사람들이 협업을 할 경우 fork보다, branch 방식이 더 유용. RULE master branch에는 직접 커밋을 올리지 않는다 기능 개발을 하기 전에 master branch를 기준으로 새로운 branch를 만든다 이 브랜치의 이름은 [feature/기능이름] 형식으로 하고 한 명만 커밋을 올린다 [feature/기능이름] 브랜치에서 기능 개발이 끝나면 master 브랜치에 이를 합친다 Branch 생성 & Commit & Push clone한 project를 저장할 폴더로 이동 (기존의 android studio project들이 있는 폴더에서 하는게 좋을듯함.) 해당 폴더(AndroidStudoiProjects) 마우스 오른쪽 클릭 > gitbash here git clone --.. 이전 1 다음