I'm a .NET developer, but in our organization we also have a couple of Microsoft Dynamics NAV developers. Currently they're not using any source control, other than what NAV has built-in, which seems to be just current version and previous version. I know very little about NAV, but as I understand it, you can script out objects from NAV and import back in from the scripts.

That being the case, is anyone using Git with NAV? Have you run into any gotchas along the way? I'm wondering if this is a good solution to suggest to them, and whether it's any more complicated to manage than using Git with .NET (which I've found reasonably easy).

link|improve this question

63% accept rate
feedback

2 Answers

Yes we are using Git together with Dynamics NAV with great success!

The bad thing is that all objects must be exported to txt before git gives meaning. Let's hope that MS will create an easier approach to exporting objects to txt. We are using this model. Create a Git repository with a general master, and a branch for each object we change. All source files must be named as the same as the branch top file to make git track differences. In this way of using Git we never merge anything into master. After starting using Git it's much easier to work on shared objects and track what have any NSC's done with the code. And IT Revision are happy because all code is well documented and the way to any fallback is much easier. I'll give my full endorsement to use Git with Dynamics NAV.

Navision Consultant, in Oil & Energy Industry

link|improve this answer
feedback

I'm using Dynamics NAV and Git, however not in the same time. Let me explain why.

The Git itself is cool (with GitHub it gets even better), but Windows port is poor, unless you don't like to stick to unix-like command line, since it's recommended way to setup msysGit. GUI tools on Windows no good, unfortunately.

For me it was hard to make my boss understand, why using distributed version control is better than usual TFS. For business-oriented guys one big central repository feels more secure (because it's my own server I pay for, I control access to) and more robust (I hired system administrator who will run maintenance procedures).

I decided not to fight against this will. We're using distributed version control as a staging area. All unstable changes, testing within our team stored in this area, after finishing stabilization objects merged into central repository. Everybody looks happy.

Regarding Git. Recently I switched to another distributed version control — fossil due to following reasons:

  • It can make everything that Git can;
  • It looks, feels and acts native on Windows;
  • It has web-interface build-in and I can easily make it run as a native Windows service;
  • It has integrated issue-tracking, so I don't need third-party tools any more;
  • Repository is single file, so I can take it with me on pen drive everywhere I want;

Regarding our NAV solution. It's more than 1000 objects, size over 20 MB.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.