일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- mysql
- PHP
- 우분투
- Android
- JS
- HTTP
- java
- php7
- protocol
- Godot
- API
- Guide
- 구글
- node
- CSS
- Godot3
- error
- javascript
- nodejs
- ASP
- Python
- 리눅스
- HTML
- Eclipse
- windows
- install
- ubuntu
- HaProxy
- Linux
- Today
- 5
- Total
- 1,198,778
목록VersionControl/SVN (18)
Blue Breeze
Svn switch from trunk to branch siwtch 동일 저장소에서 저장소 마지막 위치를 변경한다. svn co svn://svn.domain.com/project_name/branches/release svn info Path: . Working Copy Root Path: /home/username/project_name URL: svn://svn.domain.com/project_name/branches/releas..
[SVN] 'cleanup' 에러 svn checkout ignore directory/folder [SVN] remains in conflict 에러 해결 - DEVELOPER svn up trunk ... error 'cleanup".... svn cleanup svn up trunk ... error ... sqlite3 .svn/wc.db "select * from work_queue" sqlite3 .svn/wc.db "delet..
SVN checkout ignore folder svn co svn://svn.domain.com/project_name/ project_name --depth immediate cd project_name ll . .. branches/ tags/ trunk/ cd trunk ll . ..
hook script 로 svn 동작 제어하기 ssh-keygen 자동 로그인 How to get the name of branch in a post-commit hook in SVN? 주의 : 보안 이슈로 hooks 실행은 환경변수를 상속받지 않고 모두 초기화하고 실행된다. post-commit #!/bin/sh REPOS="$1" REV="$2" mailer.py commit "$REPOS" "$REV" /path/to/mailer..
토픽 브랜치와 통합 브랜치에서의 작업 흐름 파악하기 3.3 Git 브랜치 - 브랜치 관리 버전 관리 시스템 유랑기, 그리고 Git 적응기 SVN 사용시에 branch와 merge 잘 이용하기 저장소 svn://domain.com/project - 팀원 단위 진행 순서로 구성.(로컬 저장소 대용) - 팀원의 개별 폴더를 생성해서 관리하는 방식은 svn특성상 많은 문제가 발생 할 수 있다. - 개발자의 저장 폴더와 branches/rel..
e편집기로 통합된 파일을 변경 [edit] df통합된 파일에서 모든 변경사항 보기 r통합된 파일을 승인 dc통합을 무시한 모든 충돌 보기 mc내 파일 기준으로 충돌 보기 (same) [mine-conflict] tc그들 파일 기준으로 충돌 보기 (same) [theirs-conflict] mf내 파일 결정 (even non-conflicts) [mine-full] tf그들 파일 결정 (same) [theirs-full] m충돌 해결을 ..
How do I ignore a directory with SVN? How to set svn:ignore with multiple values? propset/propedit svn propset svn:ignore dirname . svn propedit svn:ignore . # . 폴더에 svn:ignore 설정 svn propset svn:ignore application/cache/ . # . 폴더에 라인단위로 svn:igno..