My repository consists of two folders client and server. In server I have few folders which were automatically generated by Codeblocks IDE like bin and obj. I dont want to store them in my repository, so I decided to add .gitignore. I tried everything:
# folders **/bin/ **bin/ **/bin **bin bin /bin bin/ /bin/ server/bin /server/bin server/bin/ server/bin And still after pull and making git status I can see that bin folder will be pushed. What am I doing wrong?
git status?new file: server/bin/Debug/chat servernew file: server/obj/Debug/chat.ogit rm -r --cached .andgit add .thebinfolder is still being tracked.