Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Should I add .idea/assetWizardSettings.xml to gitignore?

Should I add .idea/assetWizardSettings into git ignore? It is generated when I created launcher icons for adaptive and legacy

like image 246
vinay kumar Avatar asked Jun 14 '18 18:06

vinay kumar


People also ask

What is Jarrepositories XML?

<option name="url" value="https://repo1.maven.org/maven2" /> </remote-repository> <remote-repository> <option name="id" value="jboss.community" /> <option name="name" value="JBoss Community repository" />

What goes in a Gitignore file?

gitignore file tells Git which files to ignore when committing your project to the GitHub repository. gitignore is located in the root directory of your repo. / will ignore directories with the name.

Can I put Gitignore in subdirectory?

gitignore file is usually placed in the repository's root directory. However, you can create multiple . gitignore files in different subdirectories in your repository. The patterns in the .


2 Answers

You can add it to your .gitignore file and your project will be fine. The .idea/assetWizardSettings.xml is just a file that contains the configuration settings the Image Asset Studio used to create your icon.

like image 80
Tamoxin Avatar answered Oct 20 '22 22:10

Tamoxin


All the build related files are generated better not to add these files into git, Adding them to gitignore is the best option.

like image 5
surya Avatar answered Oct 20 '22 20:10

surya