Skip to content

Instantly share code, notes, and snippets.

View keshav-space's full-sized avatar
:octocat:

Keshav Priyadarshi keshav-space

:octocat:
View GitHub Profile
@keshav-space
keshav-space / transporter.py
Last active February 27, 2026 08:54
Migrate GitHub project between accounts
#
# Copyright (c) nexB Inc. and others. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
# See http://www.apache.org/licenses/LICENSE-2.0 for the license text.
# See https://aboutcode.org for more information about nexB OSS projects.
#
import getpass
from traceback import format_exc as traceback_format_exc
@keshav-space
keshav-space / Conventional Commits specification.md
Created June 1, 2024 22:56
Conventional Commits specification

Tables for types and scopes.

Types

Type Description Example Commit Message
feat A new feature for the user feat: add user login functionality
fix A bug fix for the user fix: correct login validation
docs Documentation only changes docs: update API usage in README
style Changes that do not affect the meaning of the code style: format code with Prettier