GIT

· GIT
1. Git Bash 실행먼저, Git을 설치한 후 Git Bash를 실행합니다. Git Bash는 Git 명령어를 실행할 수 있는 터미널 환경을 제공합니다.2. Git 폴더 생성git init3. 내 정보 등록GitHub와 연동할 때 사용자 정보를 등록해야 합니다. user.email과 user.name에는 GitHub 계정에 등록된 이메일과 이름을 입력합니다.git config --global user.email "사용자이메일"git config --global user.name "사용자이름"--global 옵션은 해당 설정이 전체 Git 환경에 적용되도록 합니다. 특정 프로젝트에만 적용하려면 --global을 생략하고 프로젝트 디렉토리에서 설정할 수 있습니다.4. 스테이지에 올리기 작업한 파일을 커..
· GIT
1. Git 설치 프로그램을 다운로드 받는다. https://git-scm.com/download/win Git - Downloading Package Download for Windows Click here to download the latest (2.43.0) 32-bit version of Git for Windows. This is the most recent maintained build. It was released about 1 month ago, on 2023-11-20. Other Git for Windows downloads Standalone Installer 32-bit Git f git-scm.com 1) 해당되는 Setup 파일의 링크를 눌러 다운로드 받는다. Standalon..
· GIT
제 PC에서 발생한 오류원문 fatal: detected dubious ownership in repository at 'D:/Source_study/CStuday' 'D:/Source_study/CStuday' is on a file system that does not record ownership To add an exception for this directory, call: git config --global --add safe.directory D:/Source_study/CStuday 위 오류는 Git이 파일 시스템에서 소유권 정보를 기록하지 않는 디렉터리에서 발생하는 것으로, GIT에 설정을 추가하여 해결 할 수 있습니다. 1. 해결방안 - 오류원문 처럼 해당 디렉터리 경로를 지정하는 방법..
100ksoft
'GIT' 카테고리의 글 목록