로컬 저장소 생성 $ mkdir Code $ cd Code $ git init git config 명령어를 이용하여 설정 committer 정보 입력 (--global 옵션이 없을 경우 해당 로컬 저장소에만 적용, 정보는 자신의 정보 입력) $ git config --global user.name "do9dark" $ git config --global user.email "do9dark@gmail.com" 정보 확인 $ git config --global --list 다른 옵션들... $ git status $ git log $ git help ... 파일 생성 $ echo "# Code" >> README.md INDEX(stage)에 추가 (-f 옵션 사용 시 ignore 파일, 삭제한 파일 이력까..
- Install vim-tiny# cd /usr/ports/editors/vim-tiny/# make install clean - ConfigurationVim 설정# vi /usr/local/etc/vim/vimrc(초기 설정)set nocompatibleset bs=indent,eol,startset history=50set rulerset numberset autoindentset smartindentset cindentset tabstop=4set shiftwidth=4set expandtabset pasteset nobackupset viminfo= alias 설정# vi /root/.cshrcalias ls ls -FGalias vi vim 변경사항 적용# source .cshrc
- Portsnap 구성 방법Portsnap is a system written by Colin Percival for secure distribution of compressed, digitally signed snapshots of the FreeBSD ports tree. The distribution follows the client–server model and uses the transport protocol HTTP (pipelined HTTP). The base system of FreeBSD includes Portsnap. This is a fast and user-friendly tool for retrieving the Ports Collection and is the recomme..