반응형 GIT2 git cimmit 간의 변경 파일 리스트 뽑기 * git cimmit 간의 변경 파일 리스트 뽑기 git diff --name-status * 수정된 파일 목록만 뽑기 git diff --name-status --diff-filter=M * diff-filter option list A: addition of a file C: copy of a file into a new one D: deletion of a file M: modification of the contents or mode of a file R: renaming of a file T: change in the type of the file U: file is unmerged (you must complete the merge before it can be committed) X: "u.. 2023. 3. 7. git 사용법 Git 설치git-scm.com 에 가면 자신의 OS 에 맞는 설치 파일을 받을 수 있다Mac 은 이미 설치가 되어 있을 수 있으니, 터미널에 git 이라는 명령어를 실행시켜 본다Linux 에서는 배포판에 따라$ yum install git-core$ apt-get install git두가지 명령중 하나를 선택한다 Git 저장소 생성mkdir myProjcd myProjgit init // 저장소로 만든다 버전 관리 파일 추가echo "source code" > code.txt // 임의의 파일 생성git add code.txt // 버전 관리할 파일을 추가한다, add 하지 않으면 버전관리 하지 않는다git status // Commit 할 파일이 있는지 확인할 수 있다 Git User 정보 설정git.. 2017. 4. 20. 이전 1 다음 반응형