Skip to content

Latest commit

 

History

History
50 lines (35 loc) · 552 Bytes

README.md

File metadata and controls

50 lines (35 loc) · 552 Bytes

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
  1. Build binary
go build main.go;
  1. 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