#github
Read more stories on Hashnode
Articles with this tag
Go to a open source project of your interest and press the fork button Click create fork Press Code button and copy the url Now go to your...
작업 순서: 깃 지역 저장소 생성: git init 깃 사용자 등록: git config 깃허브 원격 저장소 생성 지역 저장소에 원격 저장소 등록: git remote add .gitignore 파일 생성 파일 등록 및 커밋 생성: git add, git...
깃/깃허브 소스 관리 기본 흐름 1. git init ===지역 저장소=== 2. 작업 디렉토리 3. git add 스테이징 영역 4.git commit 지역 저장소 git push▽ / git pull△ ===원격 저장소=== 흐름 지역 저장소 -> 깃허브(원격...
깃의 장점 이력 기록 및 추적 원격 저장소 및 공유 원격 저장소에 문제가 생겨도 로컬 저장소를 이용 변경 이력 병합 여러사람이 변경할 때 통합할 수 있음 git init git config user.name "깃허브 계정의 username" git config...