Git 로 컬 창 고 를 만 들 고 Gitee 에 업로드 하 는 자세 한 절차
로 컬 프로젝트 폴 더 오른쪽 단 추 를 누 르 고 선택 하 십시오
git bash here
개인 정보 입력(코드 제출 자)
git config --global user.name "xxxx"
git config --global user.email [email protected]
로 컬 프로젝트 디 렉 터 리 에 로 컬 창 고 를 만 듭 니 다.
git init
명령 을 입력 하면 항목 디 렉 터 리 에 숨겨 진.git 폴 더 가 있 습 니 다.
로 컬 창고 에 모든 코드 업로드
git add. (add 뒤에 점 이 있 습 니 다.add 와 빈 칸 이 있 습 니 다)
이렇게 해서 코드 를 로 컬 창고 에 올 렸 습 니 다.
git commit -m "initial commit"
itgitee 에 새 항목 복사https://gitee.com/xxx/xx.git주소.
로 컬 창고 연결 및 코드 업로드
git remote add origin https://github.com/Yanyf765/hr_sys.git( )
git push origin master
오류 보고:명령 실행:
git pull origin master --allow-unrelated-histories
git 는 pull 이나 가 지 를 합 칠 때 이 화면 을 만 날 수 있 습 니 다.상관 하지 않 아 도 됩 니 다.(직접 아래 3,4 단계)설명 을 입력 하려 면:
1.키보드 알파벳 i 를 눌 러 insert 모드 로 들 어가 기
2.맨 위 에 있 는 노란색 합병 정 보 를 수정 하고 수정 하지 않 아 도 됩 니 다.
3.키보드 왼쪽 상단"Esc"누 르 기
4.":wq"를 입력 하 세 요.콜론+wq 를 주의 하 세 요.Enter 키 를 누 르 면 됩 니 다.
그 다음 에 성공 할 수 있 는 pull,push 입 니 다.
원 격 오류 보고 에 제출 합 니 다.다음 과 같 습 니 다.
src refspec master does not match any
원인:
로 컬 창고 가 비어 있 습 니 다.
해결 방법:
다음 명령 으로 파일 추가 하기;
$ git add add.php addok.php conn.php del.php edit.php editok.php ftpsql.sql index.php
$ git commit -m "init files"
이후 push 과정 에서 다음 과 같은 오류 가 발생 했 습 니 다.$ git push -u origin master
Warning: Permanently added the RSA host key for IP address 'xx.xx.xxx.xxx' to the list of known hosts.
To [email protected]:hahaha/ftpmanage.git
! [rejected] master -> master (fetch first)
error: failed to push some refs to '[email protected]:hahahah/ftpmanage.git'
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.
힌트 git pull 사용 후 push
다음 명령 으로 해결:
$ git pull --rebase origin master
warning: no common commits
remote: Counting objects: 3, done.
remote: Total 3 (delta 0), reused 0 (delta 0), pack-reused 0
Unpacking objects: 100% (3/3), done.
From github.com:hahah/ftpmanage
* branch master -> FETCH_HEAD
* [new branch] master -> origin/master
First, rewinding head to replay your work on top of it...
Applying: init files
계속 push,성공.총결산
여기 서 Git 이 로 컬 창 고 를 만 들 고 Gitee 에 올 린 글 을 소개 합 니 다.더 많은 Git 이 로 컬 창 고 를 만 드 는 내용 은 예전 의 글 을 검색 하거나 아래 의 관련 글 을 계속 찾 아 보 세 요.앞으로 많은 응원 부 탁 드 리 겠 습 니 다!
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
브랜치 병합(Visual studio 2017 사용)의 계속입니다. 기능 추가를 위한 브랜치를 작성하고, 기능 추가한 후, 그 내용을 develop 브랜치에 병합해 봅니다. 1. 새롭게 「add1」라고 하는 브랜치를 작성 2. 브랜치 "add1"을 선택한 상태에서 M...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.