Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "golang",
"image": "golang:1.25.5",
"image": "golang:1.26.0",
"customizations": {
"vscode": {
"extensions": ["golang.go"]
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/build-cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,20 +20,20 @@ jobs:
goarch: [amd64]
steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Set up Go
uses: actions/setup-go@v5
uses: actions/setup-go@v6
with:
go-version: '1.25'
go-version: '1.26'

- name: Build CLI (${{ matrix.goos }})
run: |
cd cli
GOOS=${{ matrix.goos }} GOARCH=${{ matrix.goarch }} go build -v -o build/cli-${{ matrix.goos }}-${{ matrix.goarch }}

- name: Upload artifact
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: cli-${{ matrix.goos }}-${{ matrix.goarch }}
path: cli/build/cli-${{ matrix.goos }}-${{ matrix.goarch }}
33 changes: 2 additions & 31 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,37 +1,8 @@
# Folder
[Dd]ebug/
[Rr]elease/
# Compiled code
gitconduit-cli

# This project
temp.git/

# Compiled resource file
*.res

# Machine generated header from .pas file
*.hpp

# User-specific project options
*.local

# File used to save the project desktop
*.dsk

# History and backup files
__history/
__recovery/
__astcache/
*.~*

# Castalia statistics file
*.stat

# Modeling configuration file
*.tvsconfig

# Windows thumbnail cache
Thumbs.db

# Temporary file
*.tmp
*.$$$
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.

## [Unreleased]

- Replace external Git executable requirement with a custom-built application.
- Change application to a TUI.

## [0.3.0] - 2021-07-25

Expand Down
56 changes: 0 additions & 56 deletions GitApplication.cpp

This file was deleted.

51 changes: 0 additions & 51 deletions GitApplication.h

This file was deleted.

Loading
Loading