Notice
Recent Posts
Recent Comments
Link
250x250
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- git
- spring
- log_bin
- java
- migration
- MySQL
- Chunk
- npm
- Spring Batch
- expire_logs_days
- Webpack
- log4j2
- Node
- 퀵소트
- upgrade
- eslint
- current_date
- Express
- Regular expression
- Effective Java
- 정규표현식
- Effective Java 3/e
- mysql 5.5
- regex
- REACT
- JavaScript
- spring cloud
- REACTJS
- update
- nodejs
Archives
- Today
- Total
728x90
목록git_author_email (1)
728x90
내 세상
[GIT] Author/Commiter 정보 일괄 변경 (filter-branch)
git의 filter-branch를 통해서 아래의 명령어로 해결할 수 있다. git filter-branch --commit-filter " if [ "$GIT_COMMITTER_NAME" = "테스트/Test" ]; then GIT_COMMITTER_NAME="test2"; GIT_AUTHOR_NAME="test2"; GIT_COMMITTER_EMAIL="test2@naver.com"; GIT_AUTHOR_EMAIL="test2@naver.com"; git commit-tree "$@"; else git commit-tree "$@"; fi" HEAD
Technical/etc
2021. 2. 4. 13:35