목록Tool/Git (16)
2swan
URL = https://git-scm.com/downloads Git - Downloads Downloads macOS Windows Linux/Unix Older releases are available and the Git source repository is on GitHub. GUI Clients Git comes with built-in GUI tools (git-gui, gitk), but there are several third-party tools for users looking for a platform-specific exp git-scm.com
Git - 깃은 버전 관리를 도와주는 소프트웨어로, 버전 관리 시스템(Version Control System, VCS)이다. Sourcetree - 본래 명령어만으로 동작하는 깃을 사용자 입장에서 더 편리하게 사용하도록 만든 클라이언트 프로그램 Giuhub - 원격 저장소 호스팅 서비스 - 깃으로 버전 관리한 프로젝트를 깃허브에 업로드할 수 있고, 깃허브에 업로드한 프로젝트에 새로운 버전을 추가할 수 있다. - 깃허브에 업로드된 개발자들의 프로젝트를 컴퓨터로 다운로드 할 수 있다. - 업로드된 프로젝트에 코드를 기여하고, 다른 개발자들과 협업할 수 있다.
팀 리더 1. 리파지토리 만들기 2. 팀원들 초대 Invite collaborators → Manage access 의 Add People 3. 프로젝트 환경세팅 - git init - git add . - git commit -m "first commit" - git remote add origin 리파지토리 주소 - git push origin master 4. develop 브랜치 만들기 - git checkout -b develop-> git push-> git push --set upstream origin develop 5. master 브랜치 보호하기 Protect this branch 클릭 → Lock branch, Require a pull request before merging → C..