페이지 트리

버전 비교

  • 이 줄이 추가되었습니다.
  • 이 줄이 삭제되었습니다.
  • 서식이 변경되었습니다.

...

코드 블럭
languagebash
1. bamboo agent에서 최초 로그인 정보를 저장한다 


#$ git config --global credential.helper store
#$ git clone http://10.1.19.10:7990/scm/a030/a031_sub.git


Cloning into 'a031_sub'...
Username for 'http://10.1.19.10:7990':         -- 저장소 접근 계정
Password for 'http://crowd@10.1.19.10:7990':   -- 패스워드 


2. 계정 홈디렉토리 .git-credentials 저장 파일 생성 
 - 계정 정보 저장 됨 

...

코드 블럭
languagebash
1. bamboo agent계정 키 생성


#$ ssh-keygen -t rsa
-rw-------.  1 root root 1675  9월  8 16:06 id_rsa
-rw-r--r--.  1 root root  409  9월 10 14:01 id_rsa.pub

2. bitbucket 저장소 설정에서 공개 키 등록 

...