반응형

작년에 이미 private 리포지토리를 사용해본적이 있었는데

올해 다시 만들어보려고 했더니 기억상실돼서 다시 찾아본 결과를 기록해본다

 

방법은 간단한데 역시나 어디있는지 찾는게 문제임

 

 

빠르게 스샷으로 참고해보자

 

 

 

먼저 팀프로젝트를 함께할 리포지토리를 만듦

 

 

맨 오른쪽에 있는 세팅을 클릭하여 repository에 대한 설정에 들어간다

 

Manage Access를 클릭하여 이 리포지토리에 접근이 가능한 계정을 관리해준다

 

 

 

협력자 초대 ㄱㄱ

스크롤을 맨 아래로 내린 다음

Invite a collaborator를 클릭 후 사용자 계정을 입력하여 초대를 해주면 된다

 

 

초대를 보내고 나면 이메일로 연락이 가는데 초대받은 사람이 수락하면 끝

 

 

나는 초대를 보낸 입장이라 awaiting response라는 상태를 확인할수있다

 

이렇게 리포지토리 소유자를 제외한 최대 3명까지 비공개 리포지토리를 이용할 수 있다고한다

 

 

 

 

 

스택오버플로우와 깃허브 공식 문서의 답변을 바탕으로 재구성해봄

 

 

https://stackoverflow.com/questions/31264165/can-i-share-my-private-github-repository-by-link/31264715

 

Can I share my private GitHub repository by link?

I have a Java application in a private repository on GitHub and I would like to share it with someone who doesn't have an account. I didn't find any option on the site for this. Is there a way to do

stackoverflow.com

 

 

https://docs.github.com/en/github/setting-up-and-managing-your-github-user-account/managing-access-to-your-personal-repositories/inviting-collaborators-to-a-personal-repository

 

Inviting collaborators to a personal repository - GitHub Docs

Repositories owned by an organization can grant more granular access. For more information, see "Access permissions on GitHub." Pending invitations will expire after 7 days, restoring any unclaimed licenses. Note: GitHub limits the number of people who can

docs.github.com

 

반응형
반응형

 

깃에 푸쉬를 하려고 보니 필요한 파일과 업로드해서는 안되는 파일들이 있을것같아

찾아본 결과

개발 중 자동으로 생성되는 것들에 대해서는 푸쉬를 하지 말라고한다

 

예를들어

비쥬얼스튜디오를 이용한 경우, 개발 툴이 빌드마다 자동으로 만들어주는것은

앞으로도 계속적인 변화가 있으므로 그렇다고 함

 

 

그래서 정확히 어떤 확장자를 가진 파일들을 올리지 말아야하는지 찾아보았는데

깃헙에 아예 .gitignore 파일에 대한 템플릿이 올려져있어서

 

이 파일을 루트폴더에 함께 올려주면 올리지 말아야할 파일들을 자동으로 걸러서 업로드가 되니 굉장히 간편했다

 

 

 

위의 이미지는 visual studio 를 사용한 솔루션에 대한 푸쉬를 해본 예제

 

소스트리를 사용하는 사람들은 본인에게 맞는 템플릿을 아래 사이트에서 다운받고

다운받은 .gitignore을 함께 푸쉬해주면 된다.

 

 

 

 

github/gitignore

A collection of useful .gitignore templates. Contribute to github/gitignore development by creating an account on GitHub.

github.com

 

 

 

출처 : 

 

 

Why are the bin and OBJ folders in projects not recommended to be put in the repository?

Answer (1 of 6): Thanks for the A2A Asheq! The reason you should avoid putting the bin and obj folders into your repository is because they are auto-generated. This means that every team member that generates the project will create these files by default

www.quora.com

 

반응형

+ Recent posts