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 | 31 |
Tags
- route53
- enum
- mybatis
- db
- Spring
- AWS
- 3tierarchitecture
- 지옥같은git
- awsconsole
- 두개리스트비교
- 리스트교집합
- anymatch메서드
- 리스트차집합
- ansible
- instance생성
- 리스트비교
- 리스트합집합
- enumtype
- Annotation
- 중복제거
- PostgreSQL
- 권한정책
- WordPress
- hashset
- wordpress블로그
- 널포인터에러
- string_agg()
- lightsail
- list중복제거
- Java
Archives
- Today
- Total
Anyway
[Git] Config Author 변경
[상황]Project 진행 중 Commit 시 Author가 내 github user가 아닌 다른 user명으로 올라간 현상. [해결]git config 조회git config --listuser.name과 user.email이 내 정보가 아닌 다른 정보로 들어가 있었다. [이전 user정보 삭제]git config --unset user.namegit config --unset user.email 했는데도 지워지지 않았다면 global로 설정했을 경우 지워지지 않는 경우가 있다. git config --unset --global user.namegit config --unset --global user.email 그럴 경우 --global 옵션을 추가해주면 삭제된다. [git config author..
Git
2024. 8. 20. 15:32