일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- lsof
- profile
- xargs
- GIT
- tomcat
- plugin
- 네트워크
- 줄바꿈 문자
- context
- netsh
- IntelliJ
- 단축키
- web.xml
- Eclipse
- find
- maVen
- Windows
- Source
- ssh
- vscode
- import
- grep
- resource
- Windows 10
- port
- JavaScript
- VirtualBox
- bash
- Mac
- Quartz
- Today
- Total
목록Dev/git (32)
develog
revert change one file git checkout HEAD -- revert changes all git checkout . remove untracked files and directories git clean -fd stackoverflow.com/questions/1146973/how-do-i-revert-all-local-changes-in-git-managed-project-to-previous-state How do I revert all local changes in Git managed project to previous state? I have a project in which I ran git init. After several commits, I did git statu..
git config 사용자 정보 등록 ## 전역 설정 ## 파일위치: ~/.gitconfig $ git config --global user.name 'aa' $ git config --global user.email 'aa@bb.com' ## 프로젝트별 설정 ## 파일위치: ./.git/config $ git config --local user.name 'aa' $ git config --local user.email 'aa@bb.com' or $ git config user.name 'aa' $ git config user.email 'aa@bb.com' git config 사용자 정보 삭제 # 글로벌 사용자 설정 삭제 $ git config --global --unset user.name $ git..