github
-
Github 사용법github/사용법 2018. 7. 22. 18:26
출처 강의자료강사 진유림 1. Git 설치https://git-scm.com/ 2. Github 계정생성https://github.com/ 3. SourceTree 설치https://www.sourcetreeapp.com/ 4. 윈도우는 cmd을 실행 후 git bash를 실행맥은 teminal을 실행 후 'git'을 쳐본다git이 실행되면 정상 https://www.sli.do/E984 5. vscode 설치 GUI는 사용하지 못하는 명령어도 많다. 수업목표GUI로 Git을 이해하고, CLI를 정복 1. git - create new repository - put name , none check READ ME (Initialize this repository with a READMEThis will l..
-
github 사용법github/사용법 2018. 7. 15. 16:19
일반적 소스코드 작업할 때 아래 명령어에 대한 설명checkout : 첫 다운로드update : 소스코드 업데이트(다운로드)commit : 업로드 github 사용할 때 명렁어 설명clone: 첫다운로드pull 소스코드 업데이트(로컬 repo 업데이트, 다운로드)commit & push : 업로드 보통 브랜치는 3개정도 두는데master - 안정화된 버전develop - 개발중인 버전maintenance - 유지보수 깃허브 사용법 1. 계정 생성2. 로그인3. (테스트용) repository 생성4. git 설치https://git-scm.com/download운영체제에 맞게 설치전부 yes 누르고, git 설치할 때 git bash here는 체크되어 있는게 좋다.5.tortoisegit 설치 http..