Giithub에 로컬 파일을 업로드하려면
【1단계】 Giithub에 원격 창고 만들기
이 단계에서 Initialize this repository with:
【2단계】로컬 창고 만들기
① 업로드할 폴더로 이동
터미널 및 명령 켜기
cd フォルダのパス
Mac의 경우 폴더를 끌어다 놓으면 자동으로 경로를 입력할 수 있습니다② 로컬 웨어하우스 만들기
명령 ->
git init
나오면 오케이.③제본
명령 ->
git add .
대상 폴더의 모든 파일 또는 폴더를 업로드 객체로 사용합니다.터미널에 아무 것도 표시되지 않음
④ 제출(저장)
명령 ->
git commit -m "コミット名"
제출명은 비망록처럼 복식으로 해야 한다[3단계] 로컬 및 원격 링크
① git remote add original 이름
명령 ->
git remote add origin url名
url명->새 창고를 만들 때 화면에 나타나는 url실행하더라도 터미널이 표시되지 않음
로컬과 원격 연결을 위한 명령이기 때문에 두 번째push에서 입력하지 않습니다
② push(업로드)
명령 ->
git push origin master
이게 바로 Giithub에 반영이 됐어요.두 번째 이후의push절차
① 업로드할 폴더로 이동
명령 ->
cd フォルダのパス
②장정
명령 ->
git add -A
git add 옵션4
git add .
-> 현재 디렉터리 아래에 있는 변경된 모든 파일(변경된 파일, 삭제된 파일, 새 파일)이 제본됨4
git add -A
-> 변경된 모든 파일(변경된 파일, 삭제된 파일, 새 파일)을 제본합니다.4
git add -u
-> 버전 관리 및 수정된 파일 및 삭제된 파일의 바인딩새 서류는 제본되지 않는다.③제출
명령 ->
git commit -m "コミット名"
④ 추출
명령 ->
git fetch origin
원격 창고의 최신 기록 가져오기⑤합병
명령 ->
git merge --allow-unrelated-histories origin/master
-- allow-unrelated-histories를 추가하지 않으면 다음과 같은 오류가 발생할 수 있습니다.fatal: refusing to merge unrelated histories
⑥ 밀다
명령 ->
git push origin master
④⑤ 다음의 오류가 발생할 경우 보통 ④를 건너뛴 것으로 간주됩니다.! [rejected] master -> master (fetch first)
error: failed to push some refs to '.....'
hint: Updates were rejected because the remote contains work that you do
hint: not have locally. This is usually caused by another repository pushing
hint: to the same ref. You may want to first integrate the remote changes
hint: (e.g., 'git pull ...') before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.
참고 자료
Reference
이 문제에 관하여(Giithub에 로컬 파일을 업로드하려면), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://zenn.dev/toshihide2000/articles/d0c99f96e2706a텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)