목록Git (2)
엔지니어 블로그
[Git] Git action GCP 연동
git action을 통해 파일을 Cloud Storage / Bigquery에 upload 하는 방법을 소개하려고한다. 먼저 테스트용 service account를 생성한다.PROJECT="dev-sample"SERVICE_ACCOUNT="test-tj-cloud-storage"gcloud iam service-accounts create $SERVICE_ACCOUNT \ --description="test" \ --display-name="test github action" \ --project=$PROJECT 생성한 service account에 버킷 개채 관리자 권한을 부여한다.gsutil iam ch serviceAccount:$SERVICE_ACCOUNT@$PROJECT.iam..
Git
2025. 3. 12. 18:08

git push 혹은 pull을 할 때, 매번 username과 password 입력을 요구한다. 한 두번은 괜찮지만 지속적으로 형상관리를 해야하는 경우 많이 귀찮은 일이다. 그래서 해당 입력을 생략하는 기능을 찾았다. $ git config credential.helper store --global 해당 커맨드를 입력하면 username과 password를 재입력하지 않아도 pull push를 할 수 있게 된다.
Git
2023. 10. 30. 08:38