Can you export out a WHOLE project including tags?

I am having issues on a project. I’d like to export it out and start a new project. By exporting a package it does not keep things like tags and all of those other settings. Is there a way to save everything?

To export all the editor settings, you just need an editor script with the following lines of code:

string[] projectContent = AssetDatabase.GetAllAssetPaths();  
AssetDatabase.ExportPackage(projectContent, "UltimateTemplate.unitypackage", ExportPackageOptions.Recurse | ExportPackageOptions.IncludeLibraryAssets );  
Debug.Log("Project Exported"); 

When you run the editor script, a package will be exported in your Unity project’s root directory and will have the name given in the second parameter of the ExportPackage function (right now its “UltimateTemplate”). This unity package will have all the editor settings along with everything in your project’s assets folder.

How to Export a Complete Unity Project (Including Editor Settings)