GitHub에서 PUSH로 새 저장소 만들기
하고 싶은 일
GitHub에서 새 저장소 만들기
로컬에서 파일을 만든 후 저장소의 PUSH
사전 준비
GitHub에 사용자 등록됨
단계
(1) GitHub에 로그인하여 Repositories 탭을 선택합니다.새로 만들기 를 클릭합니다.
(2) 저장소 이름을 적절히 결정합니다.저장소 만들기 버튼을 클릭합니다.
(3) 다음 화면이 나타나는지 확인합니다.https://~부분 복사
(4) 로컬 PC에서의 작업.적절한 폴더 만들기
(5) cd로 폴더로 이동합니다.
(6)git 명령으로 저장소 복제
git clone "https:/~의 부분"
(7) 3.에 설명된 해당 매개변수의 값echo "# Test" >> README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin https://github.com/satoNobu/Test.git
git push -u origin master
(8) 우선 사용자 이름과 메일 주소를 설정합니다.다른git 설정과 혼합되지 않기 위해local 설정을 선택합니다
git config --local user.name "satoNobu"
git config --local user.email "[email protected]"
(9) 설정 여부 확인
git config --local -l
아래와 같이 설정하면 된다
user.name=satoNobu
user.email= [email protected]
(10) GitHub 화면에서 업데이트할 때 README.md 파일을 올렸는지 확인할 수 있습니다.
오류 발생 시
다음 오류가 발생하면
fatal: unable to access ' https://github.com/satoNobu/Test.git/': The requested URL returned error: 403
다음 명령을 입력하면 다시 PUSH
git remote set-url origin https://<사용자 이름>@github.com/<사용자 이름>/Junit.gitgit remote set-url origin https://[email protected]/satoNobu/Test.git
사용자 이름과 비밀번호를 바꾸는 것을 잊어버려서 수정하고 싶은 상황.
(1) 우선 로그 확인
git log -1 --pretty=full
(2) 명령으로 사용자 이름과 암호 수정 git config --local user.name "satoNobu"
git config --local user.email "[email protected]"
(3) 명령 실행git commit --amend
참조 URL
gitpush 403 오류 반환
Git의 Commit Author 및 Commiter 변경
Reference
이 문제에 관하여(GitHub에서 PUSH로 새 저장소 만들기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/satoNobu/items/12fc71d8927acea20f17
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
GitHub에 사용자 등록됨
단계
(1) GitHub에 로그인하여 Repositories 탭을 선택합니다.새로 만들기 를 클릭합니다.
(2) 저장소 이름을 적절히 결정합니다.저장소 만들기 버튼을 클릭합니다.
(3) 다음 화면이 나타나는지 확인합니다.https://~부분 복사
(4) 로컬 PC에서의 작업.적절한 폴더 만들기
(5) cd로 폴더로 이동합니다.
(6)git 명령으로 저장소 복제
git clone "https:/~의 부분"
(7) 3.에 설명된 해당 매개변수의 값echo "# Test" >> README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin https://github.com/satoNobu/Test.git
git push -u origin master
(8) 우선 사용자 이름과 메일 주소를 설정합니다.다른git 설정과 혼합되지 않기 위해local 설정을 선택합니다
git config --local user.name "satoNobu"
git config --local user.email "[email protected]"
(9) 설정 여부 확인
git config --local -l
아래와 같이 설정하면 된다
user.name=satoNobu
user.email= [email protected]
(10) GitHub 화면에서 업데이트할 때 README.md 파일을 올렸는지 확인할 수 있습니다.
오류 발생 시
다음 오류가 발생하면
fatal: unable to access ' https://github.com/satoNobu/Test.git/': The requested URL returned error: 403
다음 명령을 입력하면 다시 PUSH
git remote set-url origin https://<사용자 이름>@github.com/<사용자 이름>/Junit.gitgit remote set-url origin https://[email protected]/satoNobu/Test.git
사용자 이름과 비밀번호를 바꾸는 것을 잊어버려서 수정하고 싶은 상황.
(1) 우선 로그 확인
git log -1 --pretty=full
(2) 명령으로 사용자 이름과 암호 수정 git config --local user.name "satoNobu"
git config --local user.email "[email protected]"
(3) 명령 실행git commit --amend
참조 URL
gitpush 403 오류 반환
Git의 Commit Author 및 Commiter 변경
Reference
이 문제에 관하여(GitHub에서 PUSH로 새 저장소 만들기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/satoNobu/items/12fc71d8927acea20f17
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
echo "# Test" >> README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin https://github.com/satoNobu/Test.git
git push -u origin master
git config --local user.name "satoNobu"
git config --local user.email "[email protected]"
git remote set-url origin https://[email protected]/satoNobu/Test.git
git log -1 --pretty=full
git config --local user.name "satoNobu"
git config --local user.email "[email protected]"
git commit --amend
Reference
이 문제에 관하여(GitHub에서 PUSH로 새 저장소 만들기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/satoNobu/items/12fc71d8927acea20f17텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)