Git 사용 설명서 (1): 설정 초기 화

1.5 Git 설치
분산 버 전 관리 시스템 Git 홈 페이지 다운로드 주소:
http://git-scm.com/download

설치 후 Git Bash 터미널 에서 명령 을 실행 하 는 것 을 추천 합 니 다.
1.6 Git 설정 초기 화
Git 의 모양 과 행동 을 제어 하 는 설정 파일 은 세 개의 다른 위치 에 저 장 됩 니 다 (후 자 는 전 자 를 덮어 씁 니 다).
1、   :/etc/gitconfig   ,                。
      git config --system      
2、   :~/.gitconfig   ~/.config/git/config   ,       。
    git config --global
3、   :.git/config   ,     。

사용자 정보 설정
$ git config --global user.name "name"
$ git config --global user.email name@example.com

설정 정보 검사
//             
$ git config --list

//   git config <key>          ,  :
$ git config user.name

1.7 도움말 얻 기
//       
$ git help

//        ,  git help add
$ git help <command>

//     Git  
$ git help -a

//   Git    
$ git help -g

2.1 Git 창고 가 져 오기
기 존 디 렉 터 리 에서 창 고 를 초기 화 합 니 다.
//             ,           :
$ git init

//        .git     

기 존 창고 복제
//    https://   。mylibgit         
//          mylibgit   ,  mylibgit/.git/
$ git clone https://github.com/libgit2/libgit2 mylibgit

//    SSH     
$ git clone user@server:path/to/repo.git mylibgit

2.2 창고 에 업데이트 제출
파일 무시
//  .gitignore                。     :

//        “#”       Git  。

//  “/”      。
#           TODO  ,    subdir/TODO
/TODO

//  “/”       。
#   build/         
build/

//   “*”           。
#   doc/notes.txt,     doc/server/arch.txt
doc/*.txt //               ,  a/**/z    a/z、a/b/z 。
#   doc/      .pdf  
doc/**/*.pdf

//                 ,           (!)  。
#       :   lib.a  
!lib.a

//     :
// [abc]                 ;
//   “?”         ;
// [0-9]     0 9   。

참고 자료: 1, 2 판http://git-scm.com/book/en/v2 2. Android 프로젝트 의. gitignorehttps://github.com/github/gitignore/blob/master/Android.gitignore

좋은 웹페이지 즐겨찾기