일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- log4j2
- migration
- regex
- Spring Batch
- nodejs
- spring
- expire_logs_days
- 퀵소트
- 정규표현식
- Node
- log_bin
- Express
- Effective Java 3/e
- Webpack
- mysql 5.5
- Regular expression
- update
- npm
- REACTJS
- current_date
- upgrade
- java
- Chunk
- spring cloud
- MySQL
- JavaScript
- REACT
- eslint
- git
- Effective Java
- Today
- Total
목록git (3)
내 세상
git clone -b master --single-branch http://abc.com/test.git 위와 같은 형태로 사용함. git clone -b [branch_name] --single-branch [git_url]
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
Git에서 특정 Branch만 Clone하기 ( --single-branch ) git clone -b 0.5-stable --single-branch https://github.com/facebook/react-native.git Git에서 clone을 저장할 폴더 변경하기 - git clone 명령을 실행한 path에서 other_clone 폴더 내에 clone이 된다. git clone https://github.com/facebook/react-native.git other_clone