git 능숙하게 다루는거 아니라서 정보가 좀 필요함

World라는 폴더가 있고 그 안에 Hello.txt 하위파일이 있어

처음에 git add . 해서 커밋 메세지를 init으로 하면

git에서 볼때 World   init / Hello.txt   init 일캐 보여지잖아??

그 이후에 Hello.txt 파일을 수정한뒤 git add World/Hello.txt로 애드한뒤 git commit -m "Hello" 이렇게 바꾸면

git에서 볼때 World   Hello / Hello.txt   Hello 이렇게 보여짐

내가 원라는건 World   init / Hello.txt   Hello 이렇게 보여지게 하는거거든

- dc official App