[GitHub] github 사용 방법 - Visual Studio
·
Dev Tools
비주얼 스튜디오에서 github을 사용하는 방법을 알아본다. 오작동을 할 경우에는 commend 창에서 해결해야한다. 따라서 git client를 이용하는 방법도 알아 놓을 필요가 있다. github 사용 방법 - git client 이용하기 1. git client 설치 Git www.git-scm.com ggGUI Client를 다운로드 후 설치한다. 2. Git CMD 실행 git client를 설치하면 Git CMD를 실행할 수 있다. Git CMD를 실행하여 작업할 폴더로 이동한다. 3. user config.. kimgopa.tistory.com 1. Visual Studio에서 github 설치하기 [확장] - [확장 관리] 메뉴의 온라인 탭에서 GitHub Extension for Visu..
[GitHub] github 사용 방법 - git client 이용하기
·
Dev Tools
1. git client 설치 Git www.git-scm.com ggGUI Client를 다운로드 후 설치한다. 2. Git CMD 실행 git client를 설치하면 Git CMD를 실행할 수 있다. Git CMD를 실행하여 작업할 폴더로 이동한다. 3. user config 사용할 user를 지정한다. $ git config --global user.name "Mona Lisa" 참고 1) user.name을 지정하지 않았다면 Profile에서 Name을 지정해야 한다. 또는 가입 시 인증한 이메일로도 가능하다. $ git config user.email "email@example.com" Setting your username in Git - GitHub Docs Setting your usern..
[GitHub] github 시작하기 - web
·
Dev Tools
깃헙은 원격으로 인터넷에 소스를 보관할 수 있고 변경사항을 메모하고 확인하는 기능을 제공해 준다. 1. github 가입하기 GitHub: Where the world builds software GitHub is where over 56 million developers shape the future of software, together. Contribute to the open source community, manage your Git repositories, review code like a pro, track bugs and feat... github.com 깃헙 계정을 생성하여 가입을 완료한다. 이메일 인증까지 완료해야 소스를 올릴 수 있다. 2. Create a new repository ..