1

I am quite new on GitLab hence I have very naive question

enter image description here

this image is screenshot of my GitLab repository as you can see on screen shot internal_external@ba01dda6 is not folder

but in my local repository it is folder with name Internal_external and it has several files which need to be part of my remote master branch on gitlab but whenever I try to commit files from Internal_external folder using command

git add .
git commit -m "bla bla message"
git push origin master

files from internal_external are not get updated on gitlab as well as git diff shows no difference between local and and remote repository on GitLab

ganesh
  • 171
  • 1
  • 2
  • 13

2 Answers2

1

finally found solution In image second file like symbol shows git submodules so just removed submodule fron Internal_external and now I can commit those changes to remove submodule I followed this Stackoverflow post

ganesh
  • 171
  • 1
  • 2
  • 13
0
  1. Commit the changes in your local git repository
  2. Switch to the respective directory of GitLab
  3. Push all the files into it
Anastasios Selmani
  • 3,579
  • 3
  • 32
  • 48
Aakizone
  • 235
  • 1
  • 4