GitHub (2) 썸네일형 리스트형 Visual Studio용 gitignore 템플릿 Visual Studio에서 사용할 .gitignore 를 검색하다 GitHub에서 사용하는 .gitignore 템플릿을 모아놓은 저장소를 찾았습니다. 우선, Visual Studio용은 아래 링크를 참조하세요. https://github.com/github/gitignore/blob/master/VisualStudio.gitignore github/gitignore A collection of useful .gitignore templates. Contribute to github/gitignore development by creating an account on GitHub. github.com 각 종 .gitignore 템플릿은 아래 입니다. 필요한 것 찾아서 사용하면 됩니다. https://gi.. 로컬 저장소 branch를 GitHub remote 저장소로 보내기 로컬 저장소에 GitHub 저장소가 remote로 연결된 상태에서, 로컬 저장소에 새로 만든 branch를 GitHub로 보내는 방법을 알아보겠습니다. 1. 현재 로컬 저장소 branch 상태 확인 git branch 명령으로 로컬 저장소의 branch 를 조회합니다. *가 맨앞에 붙은 branch가 현재 선택되어 작업중인 branch를 나타냅니다. 2. 새 branch 만들기 및 이동 git barnch [새 branch 이름] 명령을 실행하면 branch를 만들 수 있습니다. branch를 만든 후 git branch로 확인하면, first-branch가 만들어졌지만, 아직 master가 선택되어 있습니다. git checkout [branch 이름] 명령으로 branch를 이동할 수 있습니다. * .. 이전 1 다음