GIT 사용 요약

1580 단어 기타
1. 코드 끌어오기
git clone ssh://[email protected]:22222/goods-record-system.git

2. 로컬 지점 만들기
git branch feature_goods-record-system_0314_wjj
IDEA    NEW BRANCH    

3. 로컬 지점 보기
git branch

4. 원격 지점 보기
git branch -a

5. 분기 전환
git branch feature_goods-record-system_0314_wjj

6. 임시 저장소로 제출
git commit 
IDEA      ->Git->Commit Dictionary...

7. 원격 지점으로 제출
git push origin test:test
git push origin test         ,                 
IDEA      ->Git->Resposity->push

8. 원격 지점 끌어오기(익숙하지 않음)
git pull origin test:test
git pull origin test         ,                 
IDEA      ->Git->Resposity->pull

9. 다른 사람의 지점을 합병한다
git branch feature_goods-record-system_0314_wjj             
git merge test         
      

10、수동으로 충돌 방법을 해결하고 지점을 합병한 후 IDEA 아래에 Resolve 알림이 있습니다. 클릭하여 모든 충돌 파일을 수동으로 해결하고 현재 파일(작업 디렉터리) 상태를 보십시오.
git status

12. 파일이git add 작업을 실행하였으나 변경 사항을 취소하려고 합니다
git reset HEAD fileName         
git checkout fileName         

13. 로컬에서 여러 번git commit 작업을 수행했으므로 해당 작업을 취소하고 싶습니다.
git reset --hard HEAD^        commit  

14. 파일 히스토리 버전 보기
git log                

15. 지정된 commitID로 스크롤
git checkout   

좋은 웹페이지 즐겨찾기