speedy-git

Crates.iospeedy-git
lib.rsspeedy-git
version0.1.0
sourcesrc
created_at2023-07-20 17:09:28.767201
updated_at2023-07-20 17:09:28.767201
descriptionSpeedy Git (spit) is a CLI tool to automate common git workflows and provide safer defaults
homepagehttps://github.com/camdenmcgath/speedy-git
repositoryhttps://github.com/camdenmcgath/speedy-git
max_upload_size
id921562
size22,336
Camden McGath (camdenmcgath)

documentation

README

Speedy Git aka Spit

Spit is a command line tool built to wrap git commands in to quicker and more concise commands with safer defaults. Below is the list of currentyl supported spit commands and their git equivalents.

Commands

spit git
spit commit <msg> git add .
git commit --message="msg"
spit push git push --set-upstream origin <curr_branch>
spit update <msg> git add .
git commit --message="msg"
git push --set-upstream origin <curr_branch>
spit make <url> git init
git remote add origin <url>
Commit count: 68

cargo fmt