React
Issue
Testing
Git stash
Study
uncertainty
/
Issue
/
Issue
/
.git이 프로젝트 내부의 frontend 폴더에도 들어있는 경우 해결방법
uncertainty
/
Issue
/
Issue
/
.git이 프로젝트 내부의 frontend 폴더에도 들어있는 경우 해결방법
Share
React
Issue
Testing
Git stash
Study
.git이 프로젝트 내부의 frontend 폴더에도 들어있는 경우 해결방법
Asset Type
git
File Type
When to use
2022/03/25
Created by
Last edited time
2022/05/05 13:03
Reference
Reference2
인식이 이상하게 frontend에서 잡히고 있어서
커밋을 할 때 루트 디렉터리 기준으로 잡히지 않는 현상이 있다.
찾아보니 이렇게 나온다.
https://zetawiki.com/wiki/하위_.git_폴더_모두_제거
지우는 커맨드를 입력해서 지워준다.
find
.
-
mindepth
2
-
name
'.git'
-
prune
-
exec rm
-
rf
{
}
+
TypeScript
복사
이어서 frontend 프로젝트를 커밋해서 올리는 과정이다.. 캐시를 지워줘야 변경사항이 적용되어 깃이 트래킹한다.
푸시 성공