From 41d2ebfb50064914ceae8496ea275c9a06e4988c Mon Sep 17 00:00:00 2001 From: Schmidt Peter <117939077+jokerz5575@users.noreply.github.com> Date: Thu, 21 May 2026 14:31:05 +0200 Subject: [PATCH] Fixed upload --- README.md | 25 +++++++++++++++---------- src/config.c | 9 +++++++++ src/git_ops.c | 8 ++++++++ 3 files changed, 32 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 7a0cde6..0a8ef78 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# gbuild — C rewrite +# gbuild A C rewrite of the original [gbuild](https://spdlab.hu/gbuild) bash tool. Clone, pull, pick a target, build — all from one command. @@ -18,20 +18,25 @@ Clone, pull, pick a target, build — all from one command. ## Dependencies -| Library | Purpose | Install (Debian/Ubuntu) | -|----------|------------------------------|------------------------------| -| ncurses | TUI for picker & log browser | `sudo apt install libncurses-dev` | -| git | Clone / pull | `sudo apt install git` | -| make | Build projects | `sudo apt install make` | -| less | Open logs from browser | `sudo apt install less` | +| Library | Purpose | +|----------|------------------------------| +| ncurses | TUI for picker & log browser | +| git | Clone / pull | +| make | Build projects | +| less | Open logs from browser | --- ## Build +### Linux + ```sh -# Install ncurses dev headers if needed -sudo apt install libncurses-dev +# Install these packages with your package manager +libncurses-dev make + +# Clone this repository +git clone https://github.com/jokerz/gbuild.git # Build both binaries into bin/ make @@ -65,7 +70,7 @@ gbuild myproject [git] GIT_URL = http://localhost:3000 -GIT_USER = jokerz +GIT_USER = Username [auth] # Use token-based OR password-based auth; leave the other blank diff --git a/src/config.c b/src/config.c index 46b8b5f..a89ba18 100644 --- a/src/config.c +++ b/src/config.c @@ -1,3 +1,12 @@ +/* + +This file is licensed under the MIT license. + +Copyright (c) Schmidt Peter Daniel 2026 + + +*/ + #include "config.h" #include diff --git a/src/git_ops.c b/src/git_ops.c index 4923c3d..69588eb 100644 --- a/src/git_ops.c +++ b/src/git_ops.c @@ -1,3 +1,11 @@ +/* + +This file is licensed under the MIT license. +Copyright (c) Schmidt Peter Daniel 2026. + + +*/ + #include "git_ops.h" #include "config.h"