Infra & Tools/GIT
-
Git rebaseInfra & Tools/GIT 2022. 3. 2. 11:42
[branch = mt local ] git pull git add . git commit -m"df" git pull origin main "merge 완료시 " git push commit = memo 를 남겨 만드는 시점 , 노드를 만든다고 봐도 된다. origin = remote repo url kris ~/Desktop/Solution-Challenge-2022-Chario-App sunghyun >R> git pull origin main https://github.com/DSCHUFS/Solution-Challenge-2022-Chario-App URL에서 * branch main -> FETCH_HEAD fatal: It seems that there is already a ..
-
깃 branch(feat Kraken)Infra & Tools/GIT 2021. 9. 28. 23:13
How to "나 코드 작성했고 이거 master 에 합치고 싶어~" 깃을 설치하고 항상 혼자서 Github 만을 쓰다가 이번 gdsc 활동을 통해 사용해본다. 사진 먼저 보고 가자. sub part (처음 만) Git 생성(init) > add > commit >. remote 연결 with github >push add > commit >push 출처: Working Directory: 현재 작업 중인 Git 프로젝트 파일들이 있는 내 PC의 디렉토리입니다. 평소 작업하듯 자유롭게 프로젝트를 작업할 수 있습니다. Staging Area: 커밋할 변경 내역들의 대기 장소입니다. ‘git add’ 명령어를 사용하면 Working Directory의 변경내역을 Staging Area에 올립니다. 명령어 옵..