일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- findTopBy
- CompletableFuture
- 리눅스
- IntelliJ
- HandlerMethodArgumentResolver
- #docker compose
- multipart테스트
- 자바 ORM 표준 JPA 프로그래밍
- java
- vue.js
- @TransactionalEventListener
- ksqldb
- 친절한 SQL 튜닝
- aws
- javascript case
- 자바 ORM 표준 JPA 프로그래밍 정리
- Spring Cloud Netflix
- JPA
- git
- @Transactional Propagation
- Linux
- 원격 브랜 삭제
- intellij 핵심 단축키
- 백명석님
- ksql
- 마이크로 서비스
- intellij favorites
- intellij 즐겨찾기
- 리팩토링 2판
- Stream
- Today
- Total
목록프로그래밍/GIT (13)
시그마 삽질==six 시그마
#git 제거 rm -rf .git #git 초기화, 모든 파일 추가, 커밋 git init git add . git commit -m "first commit" #깃 리모트 저장소 연결 , push git remote add origin {remote url} git push -u --force origin master
1. branch #show local branches git branch #show remote branches git branch -r #List all branches(include remote) git branch -a #Delete the specified branch git branch -d #Force delete the specified local branch git branch -D ex) git branch -D feature/test2 #Force delete the specified remote branch git push --delete ex) git push origin --delete feature/test2 #Rename the current branch to . git br..
git checkout better_branch git merge --strategy=ours master # keep the content of this branch, but record a merge git checkout master git merge better_branch # fast-forward master up to the merge 출처:https://stackoverflow.com/questions/2763006/make-the-current-git-branch-a-master-branch
.gitignore에 추가하지 못하고 push한 경우가 있다. 본 코드 입력시 원격저장소에 이미 push 된 gitignore 파일들이 사라진다. git rm -r --cached . git add . git commit -m ".gitignore is now working" git push 출처 :https://stackoverflow.com/questions/19663093/apply-gitignore-on-an-existing-repository-already-tracking-large-number-of-file
1. Reset git reset 과거 특정 커밋으로 롤백 이동, 특정 커밋 후의 히스토리는 삭제(뒤로빽) push안된 커밋 Reset은 안전 그러나 push한걸 취소하는 경우는 다른 팀원이 이미 pull 받았는지 확인하고 작업할 것 HEAD : 마지막 커밋 INDEX: 다음에 커밋할거(git add 되있는거==staging) working directory : 로컬 작업 공간 //가장 최신의 commit을 취소(index 보전==전부 staging되있는 상태로) working directory 보전 //HEAD^는 헤드의 직전 위치 $ git reset --soft HEAD^ //가장 최신의 commit을 취소(index 삭제==전부 unstaging 상태로) working directory 보전/ r..