728x90 반응형 Github4 [CI/CD] macOS에서 SSH로 GitHub 연결하고 commit/push 하기 SSH 키 생성먼저 GitHub와 연결할 SSH 키를 생성합니다. ~/.ssh/id_ed25519 (비공개 키)~/.ssh/id_ed25519.pub (공개 키) ssh-keygen -t ed25519 -C "your_email@example.com" SSH 키 GitHub에 등록GitHub 접속 → 오른쪽 상단 프로필 아이콘 클릭Settings → SSH and GPG Keys → New SSH Key아래 명령어로 복사한 공개키를 붙여넣기cat ~/.ssh/id_ed25519.pub Add SSH key 클릭 완료!SSH 연결 테스트ssh 연결이 잘 되었는지 확인합니다. ssh -T git@github.com 정상 연결 시 다음 메시지가 출력됩니다 👇Hi estar! You've successful.. 2025. 10. 16. [DevOps] 다양한 사용자가 GitLab 환경을 사용할 때 설정가이드 0. GITLAB INSTALLhttps://estar987.tistory.com/entry/GitLAB-%EC%84%A4%EC%B9%98 GitLAB 설치1. GitLab 패키지 저장소 추가1.1 필수 패키지 설치sudo apt updatesudo apt install -y curl ca-certificates gnupg 1.2 GitLab GPG 키 추가curl -fsSL https://packages.gitlab.com/gitlab/gitlab-ce/gpgkey | sudo gpg --dearmor -o /usr/share/keyringwww.estar987.com 1. GIT 초기 설정GitLab을 사용하기 위해선 먼저 Git 환경을 설정해야 합니다.1-1. 사용자 정보 설정Git을 사용하기 위해.. 2024. 12. 10. [DevOps]GitLAB 설치 1. GitLab 패키지 저장소 추가1.1 필수 패키지 설치sudo apt updatesudo apt install -y curl ca-certificates gnupg 1.2 GitLab GPG 키 추가curl -fsSL https://packages.gitlab.com/gitlab/gitlab-ce/gpgkey | sudo gpg --dearmor -o /usr/share/keyrings/gitlab-archive-keyring.gpg 1.3 GitLab 레포지토리 추가 저장소를 /etc/apt/sources.list.d/에 추가echo "deb [signed-by=/usr/share/keyrings/gitlab-archive-keyring.gpg] https://packages.gitlab.com/.. 2024. 12. 6. GitHub Actions: 소개 및 가이드 GitHub Actions는 GitHub에 통합된 강력한 CI/CD 도구로, GitHub 저장소에서 직접 워크플로를 자동화할 수 있습니다. 코드를 빌드, 테스트 또는 배포하는 경우 GitHub Actions는 이러한 프로세스를 효율적으로 자동화할 수 있습니다. 이 가이드에서는 GitHub Actions 사용에 대한 기본 사항, 주요 개념 및 실제 예를 다룹니다.GitHub 액션이란 무엇인가요?GitHub Actions를 사용하면 GitHub 저장소의 이벤트를 기반으로 워크플로를 자동화할 수 있습니다. 푸시, 풀 요청 또는 일정 기반 크론 작업과 같은 다양한 이벤트에 의해 트리거될 수 있습니다. 다음은 몇 가지 일반적인 사용 사례입니다.코드 테스트: 풀 요청이 생성되면 자동으로 테스트를 실행합니다.CI/C.. 2024. 5. 25. 이전 1 다음 728x90 반응형