|
![]() |
#1 |
Участник
|
dynamicsnavax: My Experience moving FinOps/X++ code to GitHub
Источник: http://dynamicsnavax.blogspot.com/20...x-code-to.html
============== I recently saw a question on LinkedIn, asking if we can share our experience with moving to Git version control. https://www.linkedin.com/posts/tommy...765342721-0i8c Here is a response to it. I will share my experience of moving to GitHub version control. We have chosen to move our X++ code to Git and in particular GitHub about 6 months ago. Reasons for the move Below are some of the reasons we have chosen to move from TFVC on Azure DevOps to Git on GitHub:
Architecture Below is the architecture we have gone with.
Here is the folder structure we keep in our repo. I am masking/obfuscating the names here and are to give you a general idea. /pipelines /pipelines/fo-nuget-build /pipelines/payment-connector-build /postman /postman/*.postman_collection.json /projects /projects/*/*.sln and *.proj /src /src/Metadata/MyCustomModules /src/PaymentConnector A few things to note here:
Our branching strategy is to have very short lived branches.
Symbolic link We are using these powershell scripts for our symbolic links and works really well. Build and Release piplelines I have attempted to use GitHub workflow actions but it was a fair bit of work. Azure DevOps pipelines work really well with GitHub and there are already tasks that I can utilise. Where as in GitHub Actions, I would have had to write powershell scripts. Jira and GitHub Jira integrates with GitHub really nicely. When ever we commit in Git and put the issue number, it will automatically link the code change to the Jira issue. Release notes We create release notes via Jira. This is done by tagging the fixed version to the release. Nothing sophisticated here to avoid confusion. The process is simple and doesn't take that much effort. Git commands I am not a Git command person. I use a combination of commands and UI tools. I have experimented with the below and I still use a combination of them.
Onboarding developers This is probably the biggest challenge in most companies. FinOps developers are so used to TFVC and its implicitly. Our daily ritual is Get latest, do some coding and checkin. One way to overcome this is a good clean readme page. Simple instructions on how to get started. Assign a simple development task and walk them through it. Then the new ritual will be something like this git checkout main git fetch git pull git merge users/munib/dev main git checkout users/munib/dev Just build up slowly to more complex scenarios. References These links are super helpful https://msdyn365fo.wordpress.com/202...ynalm-process/ https://www.gangsta.se/blog/entry/20...git-for-d365fo https://www.atomicax.com/article/git...and-other-puns https://devblogs.microsoft.com/cse/2...4/xpp-and-git/ https://www.linkedin.com/pulse/micro...uild-dharmazi/ https://www.linkedin.com/pulse/d365-...rt-hirwani-1f/ https://msdyn365fo.wordpress.com/202...zure-pipeline/ https://github.com/PaulHeisterkamp/d365fo.blog Источник: http://dynamicsnavax.blogspot.com/20...x-code-to.html
__________________
Расскажите о новых и интересных блогах по Microsoft Dynamics, напишите личное сообщение администратору. |
|