Skip to content

PixelKnightDev/GitHubber

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Git CLI Tool for macOS

Project Structure

git-cli-tool/
├── cmd/
│   └── main.go
├── internal/
│   ├── cli/
│   │   ├── input.go
│   │   └── menu.go
│   └── git/
│       ├── commands.go
│       ├── squash.go
│       └── utils.go
├── go.mod
└── README.md

How to Run

To build the binary file and to move it to your bin folder.

cd <your-directory-where-you-placed-it>
go build -o git-cli ./cmd/main.go #To build the binary file.
sudo mv git-cli /usr/local/bin/

Squashing the commits

cd /path/to/your/other/repository
git-cli

How to delete the binary now?

sudo rm /usr/local/bin/git-cli  #To delete the file from the entire system.

Disclaimer

The project is still under development. This is the initial version of the software mainly released for testing purposes. Updates are on the way soon!!

About

Git Simplified. GitHub on CLI.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Go 100.0%