DHDmytro Holyshinblog.regular.engineer·Apr 6, 2023 · 1 min readGit Quickie: Branch ComparisonIf you want to check what has been changed, you usually use git diff one-branch another , right? But the problem is that it produces a lot of output that in some cases is not needed. So there is a nice shortcut in case you want to compare two branche...00
DHDmytro Holyshinblog.regular.engineer·Apr 3, 2023 · 1 min readGit Quickie: Skip TrackingMany credentials are accidentally committed to different git repositories (GitHub, GitLab, etc.), which reduces app security as anyone can scan public repo for some common files/variables with credentials. To avoid this, we usually use .gitignore but...00
DHDmytro Holyshinblog.regular.engineer·Apr 2, 2023 · 2 min readGit Quickie: ChangelogSometimes there is a need to see what has been done since a specific commit but a bit hard to navigate through the repo history. In case there is no changelog generation tool configured, we can use git to generate a simple changelog (possible formats...00