Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Data Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more

Reply
jaryszek
Resident Rockstar
Resident Rockstar

bpip changes in git

Hello Guys,

how you are handling bpip local changes ? 

jaryszek_0-1746612719580.png


You are ignoring them in gitignore?

Best,
Jacek

 

1 ACCEPTED SOLUTION

Hi @jaryszek ,

 

Yes, changes to .pbip local files like localSettings.json and cache.abf are typically ignored using a .gitignore file. These files are generated locally by Power BI during development and often contain environment-specific or non-critical metadata , which doesn't need to be tracked in version control.

To handle them properly:

Add to .gitignore:

*.pbip/localSettings.json
*.pbip/cache.abf

Or, if you want to ignore all .pbip internal files:

*.pbip/*

Note: This keeps your Git repo clean and focused on essential files (like the actual report content, model definitions, and metadata).

 

If my response has resolved your query, please mark it as the Accepted Solution to assist others. Additionally, a 'Kudos' would be appreciated if you found my response helpful.

Thank you

View solution in original post

5 REPLIES 5
v-dineshya
Community Support
Community Support

Hi @jaryszek ,

Thank you for reaching out to the Microsoft Community Forum.

 

No, the bpip local changes are not being ignored via .gitignore—they are being tracked by Git and are currently unstaged.

 

If my response has resolved your query, please mark it as the Accepted Solution to assist others. Additionally, a 'Kudos' would be appreciated if you found my response helpful.

Thank you

 

Hi,

"No, the bpip local changes are not being ignored via .gitignore—they are being tracked by Git and are currently unstaged."

so if i addthem to gitIgnore they will not be shown as unstaged ones?

Best,
Jacek

Hi @jaryszek ,

 

Yes, changes to .pbip local files like localSettings.json and cache.abf are typically ignored using a .gitignore file. These files are generated locally by Power BI during development and often contain environment-specific or non-critical metadata , which doesn't need to be tracked in version control.

To handle them properly:

Add to .gitignore:

*.pbip/localSettings.json
*.pbip/cache.abf

Or, if you want to ignore all .pbip internal files:

*.pbip/*

Note: This keeps your Git repo clean and focused on essential files (like the actual report content, model definitions, and metadata).

 

If my response has resolved your query, please mark it as the Accepted Solution to assist others. Additionally, a 'Kudos' would be appreciated if you found my response helpful.

Thank you

Deku
Super User
Super User

Ignore, that is what the default .gitignore added by pbip does


Did I answer your question?
Please help by clicking the thumbs up button and mark my post as a solution!
jaryszek
Resident Rockstar
Resident Rockstar

thanks but it didnt add by defaut for me. It is still there. 

Helpful resources

Announcements
Fabric Data Days is here Carousel

Fabric Data Days 2026

Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.

May Power BI Update Carousel

Power BI Monthly Update - May 2026

Check out the May 2026 Power BI update to learn about new features.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Top Kudoed Authors