Gitone¶
Combine multiple git version controls steps into one command.
Introduction¶
Unlike git shell commands, gitone
automatically generates commit messages with every command.
The gitone
Python package consists of 4 shell commands and
functions:
camp
, which stands forgit commit -am
andgit push
will add and commit all changes made to tracked files and push the commit to the remote repository.acmp
, which stands forgit add
,git commit -m
andgit push
will add and commit all changes made to all files and push the changes to the remote repository.cam
, which stands forgit commit -am
andgit push
will add and commit all changes made to tracked files.acm
, which stands forgit add
,git commit -m
andgit push
will add and commit all changes made to all files.
Installation¶
$ pip install gitone
Usage¶
No need to pass any arguments.
Just run one of available shell commands or Python functions.
>>> camp()
>>> acmp()
>>> cam()
>>> acm()
$ camp
$ acmp
$ cam
$ acm