It seems to be complicated to push Old projects (VB6 projects) and cloning them. I can push all my vb6 project onto the DevOps repository but when I clone it to make some test, I can remark the project doesn't work anymore. The end of line are not the same. I stay in the Windows configuration.
I executed normaly the different operation to push the code onto devOps with
- git init
- git remote add origin
- git config --global core.autocrlf true
- git add .
- git commit -m “New project added”
- git push -u origin master
so when I create another folder and clone the project here and open my VB6 project, I can observe the end of lines are different so It becomes impossible to run the code. Do you have any idea or experience with this problem ?
core.autocrlf; do use.gitattributesif and as appropriate. There is a (small) minefield here so experiment before you commit to any particular method (if you'll pardon the overuse of the verb commit here). - torek