Introduction to Git and GitHubGoogle에서 제공합니다. In this course, you’ll learn how to keep track of the different versions of your code and configuration files using a popular ... 무료로 등록하십시오.www.coursera.org Git 기본 설정VCS는 누가 어떤 변경을 했는지 추적하는데 이 작업을 위해 Git에게 나를 알려줘야 한다.git config --global user.email "me@example.com"git config --global user.name "My name" git config 명령어를 사용하고 이메일과 이름을 설정--global : 사..
Git&GitHub
Introduction to Git and GitHubGoogle에서 제공합니다. In this course, you’ll learn how to keep track of the different versions of your code and configuration files using a popular ... 무료로 등록하십시오.www.coursera.org VCS파일에 대한 변경 사항을 추적한다.변경 사항이 언제, 누구에 의해 만들어졌는지를 알 수 있다. 또한 잘못되었을 경우, 쉽게 변경을 되돌릴 수 있다.변경 사항을 저장할 때 생성되는 모든 다른 버전을 추적한다.여러 파일을 편집하고 그 편집 사항을 하나의 변경으로 취급할 수 있는 커밋(commit)으로 만들 수 있다. 커밋 작성자는 변경 사항이 ..
Introduction to Git and GitHubGoogle에서 제공합니다. In this course, you’ll learn how to keep track of the different versions of your code and configuration files using a popular ... 무료로 등록하십시오.www.coursera.org diffdiff 명령어를 호출하면 두 파일 간의 다른 줄만 표시된다.예시1rearrange1.py import redef rearrange_name(name): result = re.search(r"^([\w .]*), ([\w .]*)$", name) if result == None: return name retur..