When I try to push my Django project into my gitlab repository it, all the files gets pushed properly except for the project folder it gets uploaded with a remove icon and text next to it that looks like that: @ it 1080bae7
            Asked
            
        
        
            Active
            
        
            Viewed 182 times
        
    2 Answers
0
            
            
        That looks like a submodule, or at least a gitlink (just a SHA1 entry)
Check if you see a .gitmodules in your repo.
If you don't see one, that means you have a nested git repo.
You can
- convert that folder (nested repo) into an actual submodule, or
- merge the nested repo into your main repo.
 
    
    
        VonC
        
- 1,262,500
- 529
- 4,410
- 5,250
- 
                    I have tried that and didn't work. i then tried to remove and create new repo multiple time didn't work so i create a new gitlab account and again didn't work. do you have django experience? – Mo Algh Dec 10 '17 at 23:52
 
    