GitHub

[GitHub] 조직 내 Two-factor authentication 활성화

less than 1 minute read

Two-factor authentication Two-factor authentication은 계정을 더욱 안전하게 보호하는 추가 보안 절차로, 사용자의 ID/Password 인증만이 아닌 추가로 요청받은 정보로 입력해야 계정 접근 권한을 얻게되는 것을 말합니다. GitHub에서...

[GitHub] Draft Pull Request

less than 1 minute read

Draft Pull Request GitHub에서는 Draft Pull Request라는 기능을 제공합니다. 일반적인 개발 flow는 아래와 같습니다. Branch 생성(feature branch)->code 작성 및 수정->PR open->Reviewer...

[GitHub] GitHub Personal Access Token

1 minute read

GitHub Personal Access Token? Git이나 GitHub에서 clone이나 push를 할 때, 과거에는 ID/Password 혹은 SSH 인증 방식을 사용했었습니다. 현재는 ID/Password를 통한 인증방식을 사용할 수 없는 것으로 알고 있습니다. 대신에 P...

[GitHub] GitHub Actions secrets

less than 1 minute read

How to register new repository secret GitHub Action 사용 시 secret이 필요한 경우가 많습니다(예를 들면 clone action). Action을 등록하는 방식에는 repository secret과 organization secret이 ...