일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- find
- Source
- port
- tomcat
- xargs
- GIT
- Quartz
- grep
- web.xml
- plugin
- Windows 10
- 네트워크
- ssh
- netsh
- vscode
- IntelliJ
- resource
- maVen
- import
- 줄바꿈 문자
- lsof
- 단축키
- context
- Windows
- Eclipse
- bash
- profile
- VirtualBox
- JavaScript
- Mac
- Today
- Total
목록Dev (274)
develog
merge 전 상태 Branch 는 master, feature 2개 git merge feature Branch All Branch master git merge feature --no-ff Branch All Branch master git merge feature --squash Branch All Branch master git rebase feature Branch All Branch master
git commit 취소 git reset --mixed HEAD^
local 의 master 브랜치와 remote 의 master 브랜치 비교master$ git diff origin/master --name-status local 의 master 브랜치와 develop 브랜치를 비교## master 브랜치를 기준으로## develop 브랜치에서 test.txt 파일의 변경된 내용을 확인$ git diff master develop test.txt 공백 무시하기, --ignore-all-space$ git diff --ignore-all-space index.php index.php.20230331 ## working tree 의 변경사항을 확인$ git diff## stage 된 파일의 변경사항을 확인$ git diff --staged## 브랜치의 커밋이 모두 완료된..
ssh key 생성 (mac) $ cd ~/.ssh $ ssh-keygen -t rsa -b 4096 -C 'company@email.com' -P '' -f ~/.ssh/id_rsa-company $ ssh-keygen -t rsa -b 4096 -C 'company@email.com' -f ~/.ssh/id_rsa-company pub key 클립보드로 복사 (mac) $ pbcopy SSH and GPG keys > New SSH key > Add SSH key - Title : company@email.com - Key : git config 설정 (mac) $ ..
로컬 브랜치를 만들고 push# 로컬 브랜치 test1 생성git checkout -b test1# 로컬 브랜치를 원격 리포지토리로 pushgit push origin test1# 원격 리포지토리에 있는 브랜치 test1 을 삭제git push --delete origin test1# 로컬 브랜치 test1 삭제git branch -d test1 브랜치 리스트 보기## 로컬 브랜치 리스트 보기$ git branch* master## 원격 브랜치 리스트 보기$ git branch -r origin/master## 로컬, 원격 브랜치 리스트 모두 보기$ git branch -a* master remotes/origin/master브랜치 생성## 로컬 브랜치 생성한 후 이동$ git branch aa$ g..