Dev ops

Dev ops/Git

[SVN] SubVersion

SubVersion. 취업을했다. 진행중인 두가지 프로젝트중 한 프로젝트가 SVN을 사용해서 처음 접하는 VCS관련 명령어 몇가지를 가져왔다. 우선 SVN을 설치하도록 하자 brew install svn checkout ( Git에서 Clone과 동일) svn checkout "URL" update ( Pull ) svn update commit ( Git에서 commit과 push를 동시에 한것과 동일 ) svn은 로컬저장소와 원격저장소가 서로 동일한 버전상태로만 관리가 가능하다 커밋즉시 푸시까지 이뤄지는것이니 commit시 상당히 주의 -m 은 커밋메시지 작성옵션 줄 개행을 위해서는 \n 을 삽입해야한다... svn commit -m "line1 \n line2" 귀찮으면 커밋메시지 파일을 만들어 작..

Dev ops/Git

[Git] -CLI- how to log out git 깃허브 키체인 등록/삭제.

Git 사용자 정보 검색 로그인된 유저 정보 확인 git config --list 사용자 설정 제거 유저 정보 설정제거 git config --global --unset user.name git config --global --unset user.email git config --global --unset credential.helper 모든 설정제거 git config --global --unset-all 키체인 삭제하기 terminal git credential-osxkeychain erase host=github.com protocol=https windows cmdkey /delete:LegacyGeneric:target=git:https://github.com user.email / user.n..

meencodewriter
'Dev ops' 카테고리의 글 목록