Notice
Recent Posts
Recent Comments
«   2024/11   »
1 2
3 4 5 6 7 8 9
10 11 12 13 14 15 16
17 18 19 20 21 22 23
24 25 26 27 28 29 30
Archives
Today
Total
관리 메뉴

충분히 쌓여가는

git 설치 방법(MAC OS) 본문

Git

git 설치 방법(MAC OS)

빌드이너프 2024. 1. 18. 16:58

1. 맥 git 설치

  • Homebrew에 보이는 긴 설치 명령어를 터미널에 입력
  • passward 입력하라고 나오면 맥북 비밀번호 입력
  • 설치 완료후 커맨드 2줄 입력하라고 나오면 2개를 각각 터미널에 입력
    echo 'eval ~~~~
    evl "$ ~~~~~

  • Homebrew 설치 후 터미널 창에 brew install git 입력하면 git 설치 완료

  • git 설치 후 터미널에서 git config --global init.defaultBranch main 입력하면 기본 branch 이름을 master -> main으로 바꿔줌
  • 난 master로 사용해서 편한대로 하면 됨

  • Visual Studio Code 실행
  • shift + command + p누르고 Install "code" from VSCode commander 검색하여 눌러줌
  • 다시 터미널에서 git config --global core.editor "code --wait"입력하면 git의 기본 에디터가 Vim -> VSCODE로 변경됨

2. git 설치 확인

  • 터미널에서 git --version입력 후 버번이 나오면 설치 완료

3. git 유저 이름 세팅

git config --global user.email "홍길동@naver.com"
git config --global user.name "홍길동"
  • 컴퓨터에서 git을 처음 사용하면 위의 코드를 입력, 누가 git을 사용하고 있는지에 대한 아이디 등록같은 것

4. 그 외

  • git config --list: config 리스트 보기
  • git config 삭제
      git config --unset user.name
      git config --unset user.email
  • 삭제 시 남아있을 경우 global 옵션 추가
      git config --unset --global user.name
      git config --unset --global user.email

'Git' 카테고리의 다른 글

git revert, reset, restore  (0) 2024.01.18
git merge, branch 삭제  (0) 2024.01.18
git branch 생성, 병합, 충돌  (0) 2024.01.18
git add, commit, diff  (0) 2024.01.18
git add, git commit  (0) 2024.01.18