일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 29 | 30 | 31 |
- 토비의스프링
- WebHook
- mariadb
- 책 정리
- vagrant
- Hibernate
- 코딩테스트
- sample
- window
- SSL
- jdbc
- spring boot
- Linux
- Jenkins
- spring
- Java
- TypeScript
- Spring Legacy Project
- AWS
- docker
- Git
- db
- TLS
- ssh
- DISTINCT
- 프로그래머스
- Client
- EC2
- github
- centos7
- Today
- Total
목록Git (4)
Woopii Vyeolog
Git 명령어 모음 클론 생성 git clone {원격 저장소 URL} {복사할 디렉토리 경로} 예시) git clone https://github.com/사용자명/저장소명.git /Users/사용자명/내문서/프로젝트 Git Pull git fetch origin git pull 원격 브랜치를 로걸 저장소로 생성 git checkout -b {생성할 브랜치명} {원격 브랜치명} 예시) git checkout -b feature/payment origin/feature/payment 로컬 브랜치 생성 git branch {생성할 브랜치명} {생성 기준이 되는 브랜치명} 예시) git branch feature/test develop 변경 내용 add, commit git add {파일경로}, (전체는, g..
Submodule Submodule은 Git 저장소 안에 다른 Git 저장소를 폴더 형태로 포함하는 기능입니다. 이를 통해 코드를 재사용하고 관리하기 편리하게 하며, 프로젝트의 모듈화와 버전 관리를 효율적으로 수행할 수 있습니다. 1. submodule을 넣으려는 프로젝트에서 다음과 같은 커맨드를 입력합니다 git submodule add 예시> git submodule add https://github.com/facebook/react.git ./react 적용할 브랜치가 필요한 경우 다음과 같습니다. git submodule add -b 2. Submodule을 추가한 후에는 다음 명령어를 사용하여 최신 버전으로 업데이트해야 합니다. git submodule update --init --recursi..
참고 :ssh key 생성 https://woopi1087.tistory.com/96 [window] ssh-keygen을 통한 ssh key 생성 참고 : ssh란? 윈도우에서 ssh-key를 생성하는 방법 1. 윈도우 검색(win+s) 창에서 cmd 혹은 powershell 실행 2. 아래 스크린샷과 같이 ssh-keygen 명령어를 통해서 key를 생성한다 3. key 생성 확인 woopi1087.tistory.com Github ssh key 등록 1.ssh key 등록 화면 이동 github 접속 및 프로필 사진 클릭하여 [settings] 진입 후 [SSH and GPG keys] 선택 후 [New SSH key] 선택 2. ssh key 등록 생성한 ssh key 공개키를 등록 후 Add S..
● 먼저 Jenkins 가 설치되어 있어야 한다. https://woopi1087.tistory.com/69 [Linux, Centos7] Jenkins 설치 ● Centos7에 Jenkins 설치 1. .Jenkins가 설치 되어 있는 지 확인 명령어 =====> yum list installed | grep jenkins 2. Jenkins 설치파일을 저장소에 다운로드 명령어 =====> wget -O /etc/yum.repos.d/.. woopi1087.tistory.com ● Jenkins ~ Github 연동 1. Centos에 Git 설치 명령어 =====> sudo yum install -y git-all 2. Jenkins 콘솔 화면에서 '새로운 item' 항목 선택 프로젝트명 입력 후 '..