일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- bash
- Mac
- profile
- Quartz
- IntelliJ
- import
- grep
- Eclipse
- web.xml
- GIT
- context
- xargs
- maVen
- 네트워크
- Source
- tomcat
- netsh
- find
- 줄바꿈 문자
- lsof
- vscode
- VirtualBox
- port
- ssh
- 단축키
- Windows
- Windows 10
- plugin
- resource
- JavaScript
- Today
- Total
목록Dev (274)
develog
https://git-fork.com/ Fork - a fast and friendly git client for Mac and Windows Fork - a fast and friendly git client for Mac and Windows fork.dev https://desktop.github.com/ GitHub Desktop Simple collaboration from your desktop desktop.github.com https://www.sourcetreeapp.com/ Sourcetree | Free Git GUI for Mac and Windows A Git GUI that offers a visual representation of your repositories. Sourc..
https://parksb.github.io/article/28.html Git 사용 중 자주 만나는 이슈 정리 코딩보다 어려운 버전 관리 parksb.github.io https://suhwan.dev/2018/01/21/Git-Rebase-1/ Git Rebase (1) 안녕하세요, 이번 포스팅과 다음 포스팅에서는 git을 처음 배우는 사람들이 가장 어려워한다는 git rebase에 대해서 알아보도록 하겠습니다. 이번 포스팅은 git에 대해 어느 정도 지식이 있는 사람 suhwan.dev https://suhwan.dev/2018/01/27/Git-Rebase-2/ Git Rebase (2) 안녕하세요, 이번 포스팅에서는 지난 포스팅에 이어서 git rebase에 대해 조금 더 탐구해보도록 하겠습니다..
작업중인 내용 임시 저장하기git-stash - Stash the changes in a dirty working directory away# stash 저장git stash push -u -m 'message'# stash 리스트 보기git stash listgit stash list --date=iso# 0번 인덱스 내용 보기git stash show 0git stash show 0 -p# 0번 인덱스 내용 적용git stash apply 0# 0번 인덱스 삭제git stash drop 0# stash 비우기git stash clear
## 한 줄로 출력, 컬럼 간격 맞춤git log --pretty='%C(magenta)%h %C(green)%ci %C(blue)%## 여러 줄로 출력git log --pretty='%C(magenta)%h %C(green)%ci %C(auto)%d %n %C(blue)%cn %C(cyan)%ce%n%n %C(yellow)%s %n' --all## graph 출력git log --pretty='%C(magenta)%h %C(green)%ci %C(auto)%d' --all --graphgit log --pretty='%h %ci %cn %ce %s %d' --allgit log --pretty=format:'%h %ci %cn %ce %s %d' --allgit log --pr..
git pull 실행시 아래 오류가 발생하는 경우 $ git pull fatal: refusing to merge unrelated histories 아래 명령으로 다시 실행 $ git pull origin 브랜치명 --allow-unrelated-histories
cmd 에서 실행 set GITLAB_HOME=C:\gitlab echo %GITLAB_HOME% docker run --detach --hostname gitlab.example.com ^ --publish 443:443 --publish 80:80 --publish 22:22 ^ --name gitlab ^ --restart always ^ --volume %GITLAB_HOME%\config:/etc/gitlab ^ --volume %GITLAB_HOME%\logs:/var/log/gitlab ^ --volume %GITLAB_HOME%\data:/var/opt/gitlab ^ gitlab/gitlab-ce:latest https://docs.gitlab.com/omnibus/docker/ GitL..