refactor(app): rename GitLite to Gitty throughout the application

The application has been rebranded from GitLite to Gitty, which involved
updating various references across the codebase, including titles,
descriptions, and identifiers. This change reflects the new branding
strategy and ensures consistency in the user interface and backend.

- Updated project name and identifiers in configuration files
- Changed all instances of "GitLite" to "Gitty" in HTML and Svelte files
- Adjusted descriptions and help texts to match the new branding
This commit is contained in:
Christoph Brandau
2026-07-08 19:51:28 +02:00
parent ea49380138
commit a7faaceb83
13 changed files with 22 additions and 22 deletions
+6 -6
View File
@@ -11,7 +11,7 @@ from minio import Minio
from minio.error import S3Error from minio.error import S3Error
# cicd_tool lives inside the GitLite repo, so its parent dir is the app root. # cicd_tool lives inside the Gitty repo, so its parent dir is the app root.
PROJECT_DIR = Path(__file__).resolve().parent.parent PROJECT_DIR = Path(__file__).resolve().parent.parent
ARTIFACT_ROOT = PROJECT_DIR / "src-tauri" / "target" / "release" / "bundle" ARTIFACT_ROOT = PROJECT_DIR / "src-tauri" / "target" / "release" / "bundle"
@@ -266,9 +266,9 @@ def main(version: Optional[str] = None, app_dir: Optional[str] = None) -> None:
raise ConfigurationError("ARTIFACT_BASE_URL is required") raise ConfigurationError("ARTIFACT_BASE_URL is required")
# S3/MinIO bucket names must be lowercase, so normalise regardless of how the # S3/MinIO bucket names must be lowercase, so normalise regardless of how the
# S3_BUCKET variable is cased (e.g. "GitLite" -> "gitlite"). # S3_BUCKET variable is cased (e.g. "Gitty" -> "gitty").
bucket_name = (os.environ.get("S3_BUCKET") or "gitlite").lower() bucket_name = (os.environ.get("S3_BUCKET") or "gitty").lower()
bucket_prefix = (app_dir or os.environ.get("APP_DIR") or "gitlite").strip("/") bucket_prefix = (app_dir or os.environ.get("APP_DIR") or "gitty").strip("/")
artifacts = _collect_artifacts() artifacts = _collect_artifacts()
if not artifacts: if not artifacts:
@@ -329,7 +329,7 @@ def main(version: Optional[str] = None, app_dir: Optional[str] = None) -> None:
if __name__ == "__main__": if __name__ == "__main__":
parser = argparse.ArgumentParser( parser = argparse.ArgumentParser(
description="Upload GitLite release artifacts to MinIO." description="Upload Gitty release artifacts to MinIO."
) )
parser.add_argument( parser.add_argument(
"-v", "-v",
@@ -340,7 +340,7 @@ if __name__ == "__main__":
parser.add_argument( parser.add_argument(
"--app-dir", "--app-dir",
default=None, default=None,
help="App directory prefix inside the bucket (defaults to gitlite).", help="App directory prefix inside the bucket (defaults to gitty).",
) )
args = parser.parse_args() args = parser.parse_args()
+1 -1
View File
@@ -3,7 +3,7 @@
<head> <head>
<meta charset="UTF-8" /> <meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Tauri Git Lite</title> <title>Gitty</title>
</head> </head>
<body> <body>
<div id="app"></div> <div id="app"></div>
+2 -2
View File
@@ -1,11 +1,11 @@
{ {
"name": "git-lite", "name": "gitty",
"version": "2026.7.16", "version": "2026.7.16",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "git-lite", "name": "gitty",
"version": "2026.7.16", "version": "2026.7.16",
"dependencies": { "dependencies": {
"@lucide/svelte": "^1.21.0", "@lucide/svelte": "^1.21.0",
+1 -1
View File
@@ -1,5 +1,5 @@
{ {
"name": "git-lite", "name": "gitty",
"version": "2026.7.16", "version": "2026.7.16",
"private": true, "private": true,
"type": "module", "type": "module",
+2 -2
View File
@@ -3,7 +3,7 @@
<head> <head>
<meta charset="UTF-8" /> <meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>GitLite</title> <title>Gitty</title>
<style> <style>
:root { :root {
color-scheme: dark; color-scheme: dark;
@@ -232,7 +232,7 @@
<img class="icon" src="/splash-icon.png" alt="" /> <img class="icon" src="/splash-icon.png" alt="" />
</div> </div>
<div class="copy"> <div class="copy">
<strong>GitLite</strong> <strong>Gitty</strong>
<span>Starting workspace</span> <span>Starting workspace</span>
</div> </div>
<div class="bar" aria-hidden="true"><span></span></div> <div class="bar" aria-hidden="true"><span></span></div>
+1 -1
View File
@@ -2532,7 +2532,7 @@ dependencies = [
] ]
[[package]] [[package]]
name = "git_lite" name = "gitty"
version = "0.1.0" version = "0.1.0"
dependencies = [ dependencies = [
"commit_ai", "commit_ai",
+1 -1
View File
@@ -1,5 +1,5 @@
[package] [package]
name = "git_lite" name = "gitty"
version = "0.1.0" version = "0.1.0"
description = "Rust backend for a lightweight Git desktop client" description = "Rust backend for a lightweight Git desktop client"
edition = "2024" edition = "2024"
+3 -3
View File
@@ -1,6 +1,6 @@
{ {
"$schema": "https://schema.tauri.app/config/2", "$schema": "https://schema.tauri.app/config/2",
"productName": "GitLite", "productName": "Gitty",
"version": "2026.7.16", "version": "2026.7.16",
"identifier": "com.git-lite", "identifier": "com.git-lite",
"build": { "build": {
@@ -13,7 +13,7 @@
"windows": [ "windows": [
{ {
"label": "main", "label": "main",
"title": "GitLite", "title": "Gitty",
"width": 1200, "width": 1200,
"height": 800, "height": 800,
"minWidth": 900, "minWidth": 900,
@@ -25,7 +25,7 @@
{ {
"label": "splashscreen", "label": "splashscreen",
"url": "splashscreen.html", "url": "splashscreen.html",
"title": "GitLite", "title": "Gitty",
"width": 460, "width": 460,
"height": 420, "height": 420,
"resizable": false, "resizable": false,
+1 -1
View File
@@ -2896,7 +2896,7 @@
</script> </script>
<svelte:head> <svelte:head>
<title>GitLite</title> <title>Gitty</title>
</svelte:head> </svelte:head>
<svelte:window on:click={handleWindowClick} on:keydown={handleWindowKeydown} on:contextmenu|capture={handleWindowContextMenu} /> <svelte:window on:click={handleWindowClick} on:keydown={handleWindowKeydown} on:contextmenu|capture={handleWindowContextMenu} />
+1 -1
View File
@@ -48,7 +48,7 @@
<span class="titlebar-brand-icon" data-tauri-drag-region> <span class="titlebar-brand-icon" data-tauri-drag-region>
<img src={iconUrl} alt="" data-tauri-drag-region /> <img src={iconUrl} alt="" data-tauri-drag-region />
</span> </span>
<span data-tauri-drag-region>GitLite</span> <span data-tauri-drag-region>Gitty</span>
{#if appVersion} {#if appVersion}
<span class="tb-version" data-tauri-drag-region title="Version {appVersion}">v{appVersion}</span> <span class="tb-version" data-tauri-drag-region title="Version {appVersion}">v{appVersion}</span>
{/if} {/if}
@@ -30,7 +30,7 @@
</div> </div>
<div class="analytics-notice-copy"> <div class="analytics-notice-copy">
<p> <p>
GitLite can send anonymous usage events to Aptabase so crashes, rough edges, and commonly used workflows are easier to improve. Gitty can send anonymous usage events to Aptabase so crashes, rough edges, and commonly used workflows are easier to improve.
</p> </p>
<p> <p>
Events do not include repository paths, remote URLs, branch names, commit messages, diffs, file names, credentials, or source code. Events do not include repository paths, remote URLs, branch names, commit messages, diffs, file names, credentials, or source code.
+1 -1
View File
@@ -29,7 +29,7 @@
<div class="dialog app-settings-dialog" role="dialog" aria-modal="true" aria-label="Settings" tabindex="-1"> <div class="dialog app-settings-dialog" role="dialog" aria-modal="true" aria-label="Settings" tabindex="-1">
<header class="dialog-header"> <header class="dialog-header">
<div> <div>
<span class="eyebrow">GitLite</span> <span class="eyebrow">Gitty</span>
<h2 class="dialog-title">Settings</h2> <h2 class="dialog-title">Settings</h2>
</div> </div>
<button class="dialog-close" type="button" onclick={onClose} title="Close"> <button class="dialog-close" type="button" onclick={onClose} title="Close">
+1 -1
View File
@@ -44,7 +44,7 @@
); );
const description = $derived( const description = $derived(
state === "installed" state === "installed"
? "Restart GitLite to use the new version." ? "Restart Gitty to use the new version."
: state === "downloading" : state === "downloading"
? "Download and installation are running in the background." ? "Download and installation are running in the background."
: state === "error" : state === "error"