You have uncommited changes (you can always check by using git status), which you want to discard.

Ruby's standard library includes a class for creating temporary directories. Similar to Tempfile it creates a unique directory name...

If you want to see the git history of a project file, that doesn't exist anymore, the normal git...

makandracards.com

Resolve @{-1} to actual branch name. (Happens when merging "-".)

When working with feature branches, stale branches pile up over time. It's best to remove them right after merge...

These are the results of the "personal tech stack survey". I've included only the most popular mentions, maybe it...

This should be fixed in the latest LTS-branches of our mysql2 fork, 0.2.x-lts and 0.3.x-lts...

Issue: You have an app using jsbundling-rails and esbuild. After deploy, the assets built by esbuild are missing in...

Building application assets with esbuild is the new way to do it, and it's great, especially in combination with...

You want to deploy new features but the latest commits are not ready for production? Then use git merge master...

makandra dev

Inspired by recent "git shortcut" cards I figured it would be nice to have one of these for rebasing a...

git --fixup is very handy to amend a change to a previous commit. You can then autosquash your commits with...

dev.to

If you have fzf installed, you may add an alias such as this to your ~/.bashrc: alias recent-branch="git...

This bookmarklet grabs a PivotalTracker story title, transforms it into a valid git branch name and automatically prepends your initials...

Accessing other repositories in Gitlab CI is not straight forward, since the access rights of the current pipeline might not...

makandra dev

While renaming a file sometimes feels like "dropping its history", that is not true: Just use git log --follow on...

Installing gems on a server that has no access to the internet (especially rubygems.org) requires to bundle the gems into...

If a project ist configured to spawn CI runners for tests or deployment when pushing to the Repo, a habit...

You can use git worktree to manage multiple working trees attached to the same repository. But why should I use...

makandra dev

I just finished migrating a project from the Asset Pipeline to Webpacker, this is what my diff to master looks...

In long diffs, it can become impossible to spot small changes in larger blocks of moved code. This may be...

tekin.co.uk

Git diffs show the surrounding contexts for diff hunks. It does so by applying regular expressions to find the beginning...

We currently test most of our gems on Travis CI, but want to migrate those tests to Github Actions. This...

On some of our older projects, we use the mysql2 gem. Unfortunately, versions 0.2.x (required for Rails 2.3) and...