Git Repository Genesis Utility
Project description
Naissance
A more dramatic Git Repository Genesis Utility.
Naissance creates both local and remote repositories in one shot. No context switching between terminal and browser — just run one command and your repo is alive.
Philosophy
Naissance is meant to get out of the way. The goal is always to minimize friction between "I want a repo" and "the repo exists." No prompts, no decisions at runtime, no context switching. You type one command, naissance handles the rest, and you're already writing code. Every design choice should serve this principle.
Installation
# Clone and install
git clone https://github.com/DODO-unique/Naissance.git
cd Naissance
pip install .
Requirements
- Python ≥ 3.10
- Git
- GitHub CLI (
gh) — authenticated viagh auth login
Note:
ghis a crucial dependency — naissance uses it to create remote repositories. Without it, the tool cannot function. Ifghis not installed, naissance will detect this at startup and suggest how to install it:⨯ GitHub CLI (gh) is not installed or not on PATHInstall it from cli.github.com, then run
gh auth loginto authenticate.
Quick Start
# Create a new repo "horizon" in the current directory
naissance horizon
# That's it. Local + remote, done.
What happens
┼─────────────────────────────────────────────────────────────┼
| _ __ _
| / | / /___ _(_)_____________ _____ ________
| / |/ / __ `/ / ___/ ___/ __ `/ __ \/ ___/ _ \
| / /| / /_/ / (__ |__ ) /_/ / / / / /__/ __/
| /_/ |_/\__,_/_/____/____/\__,_/_/ /_/\___/\___/
| v2.0.1
|
| Git Repository Genesis Utility
┼─────────────────────────────────────────────────────────────┼
Birthing repository...
✓ git found
✓ gh authenticated
✓ Path resolved: C:\Code\horizon
✓ Directory created
✓ GitHub repository created (private)
✓ Git initialized
✓ README.md
✓ .gitignore
✓ Initial commit
✓ Pushed to main
✨ horizon is alive.
Usage
naissance <repo_name> [--apath] [--name NAME] [--public]
| Flag | Description |
|---|---|
repo_name |
Name or path of the repo. Resolved relative to CWD. Use . for current directory. |
--apath |
Treat repo_name as an absolute path |
--name NAME |
Override the remote repository name (defaults to directory name) |
--public |
Create the remote repo as public (default: private) |
-v, --version |
Show version |
Examples
# Relative path — creates ./horizon
naissance horizon
# Nested path — creates ./projects/horizon
naissance projects/horizon
# Current directory — uses folder name as repo name
naissance .
# Absolute path
naissance "C:\Code\horizon" --apath
# Different remote name than the directory
naissance horizon --name my-cool-project
# Public repo
naissance horizon --public
How It Works
Naissance detects the state of the target directory and adapts:
| State | What naissance does |
|---|---|
| Doesn't exist | Creates the directory → gh repo create --clone → scaffolds README + .gitignore → commits → pushes |
| Empty directory | git init → scaffolds → gh repo create --source → pushes |
| Has files, no git | git init → scaffolds → stages all → commits → gh repo create --source → pushes |
| Already git-initialized | Checks no remote exists → gh repo create --source → pushes |
All decisions (visibility, scaffold files, commit message) are driven by defaults.yml — zero interactive prompts during execution.
Configuration
Edit defaults.yml next to the package to change defaults:
version: "2.0.1"
visibility: "private" # "private" or "public"
create_readme: true
create_gitignore: true
prompt_description: false
default_branch: "main"
initial_commit_message: "initial commit"
Error Handling
Naissance never leaks raw tracebacks. All errors are caught and displayed cleanly:
⨯ git is not installed or not on PATH
⨯ GitHub CLI is not authenticated. Run: gh auth login
⨯ Remote repository already exists: horizon
⨯ Permission denied: C:\Protected\path
License
See Also
- CHANGELOG.md — Version history
- ROADMAP.md — What's coming next
- KNOWN_ISSUES.md — Bugs and workarounds
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file naissance-2.0.1.tar.gz.
File metadata
- Download URL: naissance-2.0.1.tar.gz
- Upload date:
- Size: 12.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2a51336ab35e199eb5cf2be7017f4b5df54265963f5d0f9d256cc558168dc609
|
|
| MD5 |
42c01540f29aa1b8d19c2f7e6ed4c57d
|
|
| BLAKE2b-256 |
ddc72f32256671422cbe4a3e3168cd61b9a3dbd4aa5ba182d481c5469756e0bd
|
File details
Details for the file naissance-2.0.1-py3-none-any.whl.
File metadata
- Download URL: naissance-2.0.1-py3-none-any.whl
- Upload date:
- Size: 12.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b511ad2ca4f4aad63702edf3f0687cdcb596da6dafa39024b665c7405f966349
|
|
| MD5 |
675aa939491c64530282b58edf8dab0e
|
|
| BLAKE2b-256 |
64daf88b1e067e95943ef1e34be089f6e1a5b1b5eb6ddd8f4edf4a3f474a383d
|