Hi
I'm trying to assess whether git-source-control will work for our development environment. I've watched some videos and read the documentation and read some posts and I'm still unsure whether it works with multiple developers using a shared remote development environment (i.e. namespace). This [Video] Let InterSystems IRIS Do the Work: Git Source Control & Linting says that you can have multiple developers and says it's "Package Manager-aware (supporting multiple repos in one namespace)" whereas this post on the git-source-control github Remote development and multiple users · Issue #613 · intersystems/git-source-control
appears to say you can't. Which is it?
Also does it support .js and .css files? I've been trying to replicate the git-source-control demo in this video: [Video] Selecting The Right Source Control Strategy for Your Team on my local instance with my own project which contains .csp, .js, .css and .png files and they weren't exporting originally, so I added the ",*.js,*.css,*.png" code to the SoureControl.Git.Utils class
ClassMethod BaselineExport(pCommitMessage = "", pPushToRemote = "") As %Status
{
set sc = $$$OK
try {
write !, "Exporting items..."
set rs = ##class(%Library.RoutineMgr).StudioOpenDialogFunc(
"*.mac,*.int,*.inc,*.cls,*.csp,*.js,*.css,*.png" // Spec
and they export now, but still don't import.