git == version control system ( 버전관리시스템 ) Git is a free and open source distributed version control system designed to handle everything from small to very large projects with speed and efficiency. git 설치 https://git-scm.com/ tortoiseGit https://tortoisegit.org/ create a repository ( 저장소 만들기 ) clone repository ( 저장소 복제하기 )
1 2 3 |
cd projectfolder git init git clone url "folder name" |
사용자
1 2 3 4 |
git config --global user.name "zzou" git config --global user.email zzou@example.com $ git config --global --list //설정확인 |
https://opentutorials.org/course/2708/15242 […]