Skip to content

Instantly share code, notes, and snippets.

View axzilla's full-sized avatar

Axel Adrian axzilla

View GitHub Profile

neuefische Bootcamps: Go and Dart/Flutter

Why Should We Offer Go and Dart/Flutter Bootcamps?

A major selling point is that no other bootcamp provider offers Go(lang) and Dart/Flutter bootcamps. This makes us pioneers and allows us to break away from the Fullstack JavaScript hype!

Dart/Flutter Bootcamps

Why Dart/Flutter Instead of React Native?

@axzilla
axzilla / commitify.md
Last active April 26, 2024 07:41
Git Identity Rewriter

Description

This Gist contains scripts to update Git author and committer information in the repository history.

# Rewrite All Commits
git filter-branch -f --env-filter '
    GIT_AUTHOR_NAME="name"
    GIT_AUTHOR_EMAIL="example@mail.com"
    GIT_COMMITTER_NAME="name"
 GIT_COMMITTER_EMAIL="example@mail.com"