https://github.com/iv4n-ga6l/go-gitcli-client
Git CLI Client built in Go
https://github.com/iv4n-ga6l/go-gitcli-client
command-line-tool git gitcli gitclient go golang
Last synced: 7 months ago
JSON representation
Git CLI Client built in Go
- Host: GitHub
- URL: https://github.com/iv4n-ga6l/go-gitcli-client
- Owner: iv4n-ga6l
- Created: 2024-04-28T03:43:29.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-08-05T15:31:35.000Z (about 1 year ago)
- Last Synced: 2025-01-31T13:13:55.487Z (8 months ago)
- Topics: command-line-tool, git, gitcli, gitclient, go, golang
- Language: Go
- Homepage:
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Git CLI Client Built in Go
### Features
- git init
- git config
- git add
- git commit
- git status
- git diff
- git logs# Install
**Source**
1. Requirement
```
Go 1.21.4
```2. Build binary
```
go build main.go;
```3. Run the build
```
main
```# Usage
Type from commandline
Example:
```
go run main.go init
go run main.go config AUTHOR_USERNAME AUTHOR_EMAIL
go run main.go add FILENAME
go run main.go commit MESSAGE
go run main.go status
go run main.go diff
go run main.go logs
```