Frontend Beer [EN]
8 subscribers
11 photos
19 links
Let's discuss frontend over a craft beer

RU version: https://yangx.top/frontendbeer

Author: @dipiash
加入频道
Not about frontend, but useful to know ⭐️

How to fix a project in
IntelliJ IDEA if the ".idea" directory was added to Git and now you want to remove it?

1. Make sure that the "idea" folder is added to the .gitignore file

2. Clear the Git cache: git rm -r --cached .idea

3. Go to the "File" -> "Repair IDE" section. Follow the instructions on the IDE Repair panel

More details here: Repair IntelliJ

#FrontendBeer #intellijidea #idea #intellij #project #repair (c) Frontend Beer
Well, it's been a while since I have had posts here, so let's start small :)

Let's talk about the benefits of GUI in my favorite IDE

One cool feature is Changelists in IntelliJ IDEA. Why is it cool and convenient?

For example, you're making some significant changes to the code and suddenly, you have a brilliant idea to try something else, refactor or test a script that generates/alters files in the project

There's always a chance you might want to revert to the original state before those extreme edits. And that's where individual Changelists come to the rescue. You create a new one and don't worry about how to later untangle what to roll back and what not to :)

P.S.
Of course, you can commit or stash, but why should you make more effort?

#FrontendBeer #intellij #idea #changelist (c) Frontend Beer