일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Spain
- Software Engineering
- django
- Programming
- France
- web
- agile
- leadership
- Malaysia
- Book review
- erlang
- Italy
- programming_book
- ubuntu
- Kuala Lumpur
- Java
- hbase
- history
- Linux
- Python
- RFID
- essay
- QT
- hadoop
- program
- MySQL
- comic agile
- management
- psychology
- Book
- Today
- Total
목록GIT (5)
Lion 10.7.51. prerequisite1.1 install 'XCode' from appstore1.2 install 'Command Line Tools' on XCode1.3 install 'MacPort' from http://www.macports.org 2. install git$ sudo port install git-core +svn +doc +bash_completion +gitweb (cf. http://jhouse0317.tistory.com/29)
5.1 브랜치란 /mysite$ git branch -m master mymaster # 마스터 브랜치명 변경 /mysite$ git branch # 지역 저장소에 있는 모든 브랜치명 출력 RB_1.0.1 * mymaster /mysite$ git branch -m mymaster master /mysite$ git branch RB_1.0.1 * master 5.2 새로운 브랜치 생성 /mysite$ git branch new # new branch 생성 /mysite$ git branch RB_1.0.1 * master new /mysite$ git checkout new Switched to branch 'new' /mysite$ git branch RB_1.0.1 master * new /mysi..
4.1 파일 추가하기 스테이징된 변경 사항: 저장소에 반영하려는 작업 트리의 변경 사항일 뿐, 저장소에 커밋하기 전에 커밋을 준비하는 위치 index.html의 Biography link를 About으로 변경 /mysite-remote$ git add -i # 대화명 모드 실행 staged unstaged path 1: unchanged +1/-1 index.html *** Commands *** 1: status 2: update 3: revert 4: add untracked 5: patch 6: diff 7: quit 8: help What now> 1 # 상태 정보 출력 staged unstaged path 1: unchanged +1/-1 index.html *** Commands *** 1: ..
3.1 저장소 생성 $ mkdir mysite $ cd mysite /mysite$ git init Initialized empty Git repository in /home1/irteam/naver/work/jun/TEST/mysite/.git/ 3.2 변경하기 /mysite$ vi index.html /mysite$ git add index.html /mysite$ git commit -m "add in hello world HTML" [master (root-commit) 3a35bf9] add in hello world HTML 1 files changed, 5 insertions(+), 0 deletions(-) create mode 100644 index.html /mysite$ git log..
Git 분산 버전 관리 시스템 prerequisite: python 2.x / asciidoc / xmlto OS: Redhat Linux 2.6.9-67.0.7.ELsmp 1. python 2.6.2 $ wget http://www.python.org/ftp/python/2.6.5/Python-2.6.5.tgz $ tar xvfz Python-2.6.5.tgz $ cd Python-2.6.5 Python-2.6.5$ ./configure --prefix=$HOME/usr/local/ Python-2.6.5$ make install 2. asciidoc-8.5.3 (install, tarball) $ wget http://sourceforge.net/projects/asciidoc/files/asciid..