anthonydresser / testissues

0 stars 0 forks source link

feature: db project git init #4964

Open anthonydresser opened 3 years ago

anthonydresser commented 3 years ago

-- Feature it would be really swell to have a one-click git init for db project directories which did the following repetitive tasks:

Maybe this could be added as an option onto 'Create Project From Database' feature.

Currently doing this in terminal.

cd projectdir
git init
echo "README" > README.md  
(echo /bin && echo /obj && echo *.log && echo *.dacpac && echo *.bacpac && echo !/refs/*.dacpac) > .gitignore
git add .

Which works well but gets repetitive with many nested projects in workspace.

Thanks for listening.