Crates.io | speedy-git |
lib.rs | speedy-git |
version | 0.1.0 |
source | src |
created_at | 2023-07-20 17:09:28.767201 |
updated_at | 2023-07-20 17:09:28.767201 |
description | Speedy Git (spit) is a CLI tool to automate common git workflows and provide safer defaults |
homepage | https://github.com/camdenmcgath/speedy-git |
repository | https://github.com/camdenmcgath/speedy-git |
max_upload_size | |
id | 921562 |
size | 22,336 |
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.
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> |