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
- Windows
- maVen
- 단축키
- VirtualBox
- import
- Windows 10
- xargs
- 줄바꿈 문자
- context
- Quartz
- bash
- Eclipse
- port
- grep
- lsof
- 네트워크
- GIT
- plugin
- web.xml
- netsh
- ssh
- JavaScript
- vscode
- Mac
- profile
- find
- tomcat
- Source
- resource
- IntelliJ
Archives
- Today
- Total
목록2024/10 (36)
develog
[eclipse] web.xml 파일 만들기
프로젝트 우클릭 > Java EE Tools > Generate Deployment Descriptor Sutb 클릭
카테고리 없음
2024. 10. 16. 22:28
[vscode] diff 시 공백 무시하기, ignoreTrimWhitespace
Settings 에서 ignoreTrimWhitespace 를 입력한다Text Editor > Diff Editor > Ignore Trim Whitespace 를 체크한다
카테고리 없음
2024. 10. 16. 16:48
[git] cherry-pick
# 다른 브랜치의 특정 커밋을 가져오기git cherry-pick
카테고리 없음
2024. 10. 15. 11:29
[macOS] Beyond Compare 폴더 비교 설정 - Compare contents
Folder Compare 를 실행한다Session Settings 를 연다Compare contents 를 체크한다 Exclude folders 를 설정한다
카테고리 없음
2024. 10. 15. 11:05
[git] tag
# 태그 생성 (현재 커밋에)git tag v1.0git tag -a 'v1.2' -m '버전 1.2 태그'# 태그 생성 (이전 커밋에)git tag git tag v1.1 # 태그 목록 보기git tag# 태그 목록 필터링git tag -l '*.0'# 태그 상세 보기git show v1.0# 태그를 원격 저장소에 푸시git push origin git push origin v0.1# 모든 태그를 원격 저장소에 푸시git push origin --tags# 로컬 태그 삭제git tag -d v0.1# 원격 저장소에서 태그 삭제git push origin :v0.1git push origin --delete v0.1
카테고리 없음
2024. 10. 15. 10:31