github

🔨 Trial and Error Log

[git] 프로젝트 배포 시 유의, git 연결 확인과 연결 끊기

프로젝트 한 내용을 git 레퍼지토리에 push 할 때, 오픈 소스로 사용한 파일을 포함한 경우 git이 복잡해 질 수 있다. git remote -v 로 연결되어있는 git 을 확인 후에 연결을 끊고 다시 배포하자 # 연결 확인 git remote -v # 이런식으로 뜰 것이다. origin https://github.com/****/****.git (fetch) origin https://github.com/****/****.git (push) # 연결 끊기 git remote remove origin

🔨 Trial and Error Log

[ git ] 내가 자주 쓰는 기초 git code 모음

컴퓨터 메모장에 저장 해놓고 쓰고 있는 정말 기초적이고 필요한 git code를 블로그에도 코드로 남겨 놓는다. git code는 bold체 - local 파일 열어놓고 하기 - 이해 안될때 log랑 그래프 띄워보기 - git log - git log --oneline - git graph - q branch 만들고 branch로 checkout 함 (branch명 yejin) -> git branch yejin -> git checkout yejin 파일 수정하고 다시 commit 하기 -> git add --all -> git add -> git commit -m "yejin branch" (메세지 넣음) master로 다시 체크아웃 - branch merge함 -> git checkout maste..

지니티토리
'github' 태그의 글 목록