원격
-
원격 노트북, 아이패드에서 코딩하기카테고리 없음 2019. 11. 5. 10:08
개발자라면, 패드와 키보드를 이용해서 원격지에서 코딩을 시도 해보고 싶을때가 있다. 다음과 같은 방법들이 존재한다. 1. Visual Studio Online 을 사용하는 방법 https://visualstudio.microsoft.com/ko/services/visual-studio-online/ Visual studio code 를 웹브라우져에서 사용하게 해준다. azure instance가 생성되며, 이에따라 해당 서버의 콘솔을 이용할 수 있고 모듈 설치, 편집, 저장, 실행을 할 수 있다. 2. code-server를 리눅스 서버에 설치하는 방법 이 방법을 사용하면 서버에서 visual studio code를 가동할 수 있게 된다. https://github.com/cdr/code-server -..
-
git 브랜치 관리카테고리 없음 2018. 1. 18. 14:04
1. 로컬 및 원격 브랜치 삭제 #1. remove the branch from remote reposotirygit push origin --delete #2. remove local branchgit branch -D 2. 로컬 및 원격 브랜치명 변경 #1. rename local branchgit branch -m old_branch new_branch #2. apply to the repositorygit push origin :old_branch 3. 다른브랜치의 특정 Commit 사항만 가져와서 적용하기 git cherry-pick (commit-id) commit id ex > 5f7c23f5c82c82a10541c6da037db99d018389ee 4. 원격 브랜치 내려받기git check..