Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

0. gitignore에 대한 조사 #18

Open
1013115 opened this issue Sep 4, 2022 · 0 comments
Open

0. gitignore에 대한 조사 #18

1013115 opened this issue Sep 4, 2022 · 0 comments
Labels
조사 Improvements or additions to documentation

Comments

@1013115
Copy link
Collaborator

1013115 commented Sep 4, 2022

.gitignore

  • 사용자가 원하지 않는 파일들 즉, Git 버전 관리에서 제외할 목록을 지정하는 파일로 자동으로 git commit 대상에서 제외시켜준다. git의 추적을 피하고 싶은 파일명들을 .gitignore 파일에 적어준다
  • 오픈소스로 공개되기 곤란한 보안적으로 중요한 내용이 담긴 파일들을 넣어놓는다.

.gitignore 사용법

.gitignore 파일 적용

  • 작성한 .gitignore을 commit하여 원격 저장소에 push한다.
  • push후 gitignore적용이 되지 않을경우 아래의 명령어를 통해 원격 저장소 파일을 제거후 다시 push한다.
git rm -r --cached .
git add. 
git commit -m "커밋메세지"
git push origin {브랜치명}
@1013115 1013115 changed the title 0. .gitignore에 대한 조사 0. gitignore에 대한 조사 Sep 4, 2022
@1013115 1013115 added the 조사 Improvements or additions to documentation label Sep 16, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
조사 Improvements or additions to documentation
Projects
None yet
Development

No branches or pull requests

1 participant