티스토리 뷰
로컬 저장소 생성
$ 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 파일, 삭제한 파일 이력까지 Commit)
$ git add README.md
HEAD에 추가
$ git commit -m "first commit"
원격 저장소 주소 추가
(origin은 alias, 주소는 자신의 주소를 입력)
$ git remote add origin git@github.com:do9dark/Code.git
$ git remote add origin https://github.com/do9dark/Code.git
원격 저장소 주소 확인
$ git remote show origin
원격 저장소로 보내기
$ git push -u origin master
로컬 저장소로 가져오기
$ git pull origin master
원격 저장소에 저장된 파일을 가져오기
$ git clone https://github.com/do9dark/Code.git
파일 무시하기(전체 로컬 저장소)
$ vi ~/.gitignore_global
.DS_Store
$ git config --global core.excludesfile ~/.gitignore_global
지정한 로컬 저장소에서 파일 무시하기
$ vi 로컬 저장소/.gitignore
.DS_Store
'Tip' 카테고리의 다른 글
SHELL이란 무엇인가? (0) | 2016.01.11 |
---|---|
특정 기간에 생성된 파일 찾기 # find (0) | 2015.12.13 |
localhost란 무엇인가? (0) | 2015.12.12 |
Burp Suite 기능 설명 (0) | 2015.12.03 |
해당 문자열을 포함하는 파일 찾기 # find, grep (0) | 2015.11.14 |
Scapy: All-in-One Networking Tool (0) | 2015.04.14 |
tar (권한 포함하여 하위 디렉터리 압축) (0) | 2015.04.08 |
Terminal Prompt 설정하기 (0) | 2015.04.02 |
File (Directory) Permission (0) | 2015.03.22 |
PENETRATION TESTING PRACTICE LAB - VULNERABLE APPS / SYSTEMS (0) | 2015.02.01 |