• Feed
  • Explore
  • Ranking
/
Git
3
Git과 GitHub





전
전상욱
9 팔로워
·
4 팔로잉
소프트웨어 개발자 전상욱입니다.
태그

최근 댓글
Git 설치 방법과 사용 이유 및 원리Git 사용 이유1. 협업 (Collaboration)여러 개발자가 동일 프로젝트를 작업할 때 충돌을 방지하고 효율적인 협업을 가능하게 한다.Git을 사용하더라도 동일 파일을 서로 다르게 수정하고 동기화하지 않은 채로 push할 경우 충돌(Conflict)이 발생할 수 있다.2. 버전 관리 (Version Control)파일의 변경 이력을 추적하고, 필요
0
0
a year ago
7 min read
article-thumbnail

Git password 및 token 저장1. 전역 정보 저장git config --global user.name "이름"git config --global user.email "이메일"2. Disk에 정보 저장 하도록 설정git config --global credential.helper store이후 로그인 시 로그인 정보를 저장하며 다음부터 묻지 않게 된다.
0
0
a year ago
1 min read
article-thumbnail

Git 핵심 명령어 정리깃 원격 저장소 가져오기$ git clone https://github.com/UGKONG/workLog.git깃 초기화$ git init깃 로컬 브랜치 생성$ git branch -M main깃 원격 연결$ git remote add origin https://github.com/UGKONG/workLog.git깃 파일 로컬 저장소 추가$ git add
0
0
a year ago
2 min read
article-thumbnail
gitcloneinitbranchremoteaddcommitpushfetchresetrmconfig--globaluser.nameuser.emailcredential.helperstore깃깃허브GitHub협업버전관리백업오픈소스원리저장소코드원격연결설치터미널shellbashterminal명령어
아직 댓글이 없어요