Skip to content

Instantly share code, notes, and snippets.

@akopdev
akopdev / host_apt_repo_on_github.md
Created January 10, 2025 13:56 — forked from ikbelkirasan/host_apt_repo_on_github.md
Host an APT repository on Github

Host an APT repository on Github

This guide will help you host an APT repository on Github.

Prerequisites

You need to install the following packages.

  • reprepro
@akopdev
akopdev / git-reset-author.sh
Last active February 15, 2023 22:51 — forked from bgromov/git-reset-author.sh
Git: reset author for ALL commits
#!/bin/sh
# Credits: http://stackoverflow.com/a/750191
git filter-branch -f --env-filter "
GIT_AUTHOR_NAME='Akop Kesheshyan'
GIT_AUTHOR_EMAIL='hello@akop.dev'
GIT_COMMITTER_NAME='Akop Kesheshyan'
GIT_COMMITTER_EMAIL='hello@akop.dev'
" HEAD