반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- wrap
- Android
- GetX
- visualstudiocode
- GitHub
- 내돈내산
- xcode
- database
- 간단리뷰
- 라이언
- error
- sqflite
- AppleSilicon
- 데스크테리어
- swift
- react
- VSCode
- 카카오
- Git
- datetime
- AppBar
- 데스크셋업
- listview
- Flutter
- 플러터
- list
- M1
- 춘식
- ios
- TextField
Archives
- Today
- Total
welcome to my blog
git 기존 설정된 아이디를 다른 아이디로 바꾸기 본문
728x90
git
기존 설정된 아이디를 다른 아이디로 바꾸기
* A계정으로 사용하다가 B계정에 push할게 있어서 바꿔야하는 경우
1. 프로젝트 git config 설정을 변경해준다
다음 명령어를 실행하면 현재 프로젝트의 깃 설정현황을 볼 수 있다.
git config --list
*여기서 확인해야 할 사항은 user.name / user.email / remote.origin.url
나의 계정 아이디 , 로그인 계정 이메일, 올리고자 하는 repository url 인지 확인
확인 후에는 control + z 로 빠져나오면 됨
변경이 필요하다면 -->
git config --global user.name [계정아이디]
git config --global user.email [git로그인이메일]
git remote set-url origin [repository url]
2. keychain 설정을 변경해준다
imac 검색 -> 키체인접근 -> github.com 검색 -> 계정에 github 로그인 이메일 적어줌
밑에 암호보기를 체크해서 생성한 keychain 값을 넣어준다.
변경사항 저장을 해주고
git push -u origin main 해주면 끝
728x90
반응형
'Flutter' 카테고리의 다른 글
[Flutter] image_picker를 이용한 카메라기능구현 (0) | 2022.01.03 |
---|---|
[Flutter] build.gradle에서 빨간줄 뜰때 (0) | 2021.12.30 |
[Flutter] Could not build the precompiled application for the device (0) | 2021.12.27 |
[Flutter] Failed to register observatory port with mDNS with error (0) | 2021.12.27 |
[Flutter] error: Try launching Xcode and selecting "Product > Run" to fix the problem (0) | 2021.12.27 |