728x90
📢 mac book에 git을 설치해요
git 설치 여부 확인
xcode-select 설치 관련 팝업이 떠도 놀라지 말고 일단 close
git --version
git 설치 하기 (feat. Xcode Command Line Tools)
보통 git --version 명령 입력 시 아래 명령으로 Xcode Command Line Tools을 설치 하라는 팝업이 떠요
개발을 한다면 git, make, clang, gcc, lldb 등 개발에 필요한 툴을 포함하는 Xcode Command Line Tools 설치를 권장한다고 해요
xcode-select --install
git 세팅
사용자 정보 (최초 1회)
user name을 설정해요
git config --global user.name "Your Name"
email을 설정해요
git config --global user.email "you@example.com"
이 명령어로 설정된 이름, 이메일, 에디터, 경로 등을 확인할 수 있어요
git config --list
728x90
'TIL > 2025' 카테고리의 다른 글
| mac에서 eframe 무작정 사용해보기 (feat. egui, rust) (0) | 2025.05.04 |
|---|---|
| Macbook에 homebrew 설치 하기 (6) | 2025.05.03 |
| Virtualizing the generic timers, Arm architecture aarch64 (0) | 2025.04.29 |
| Virtualizing Exceptions in the Arm Architecture AArch64 (0) | 2025.04.29 |
| Trapping and Emulation of instructions (0) | 2025.04.29 |