gitone package

Module contents

gitone: a Python package that facilitates git version control.

gitone.camp(message: Optional[str] = None) → None[source]

Add and commit all changes made to tracked files, then push the commit.

Parameters

message – The commit message to be passed to the git commit command.

Note

A commit message will be automatically generated if the message argument is not provided.

gitone.acmp(message: Optional[str] = None) → None[source]

Add and commit all changes, then push the commit.

Parameters

message – The commit message to be passed to the git commit command.

Note

A commit message will be automatically generated if the message argument is not provided.

gitone.cam(message: Optional[str] = None) → None[source]

Commit all changes made to tracked files.

Parameters

message – The commit message to be passed to the git commit command.

Note

A commit message will be automatically generated if the message argument is not provided.

gitone.acm(message: Optional[str] = None) → None[source]

Add and commit all changes.

Parameters

message – The commit message to be passed to the git commit command.

Note

A commit message will be automatically generated if the message argument is not provided.

gitone.amend(message: Optional[str] = None) → None[source]

Amend the previous commit with changes made to tracked files.

Parameters

message – The commit message to be passed to the git commit command.

Note

The previous commit message will be reused if the message argument is not provided.

gitone.amendp(message: Optional[str] = None) → None[source]

Amend the previous commit with changes made to tracked files, then push.

Parameters

message – The commit message to be passed to the git commit command.

Note

The previous commit message will be reused if the message argument is not provided.

gitone.aamend(message: Optional[str] = None) → None[source]

Amend the previous commit with any new changes.

Parameters

message – The commit message to be passed to the git commit command.

Note

The previous commit message will be reused if the message argument is not provided.

gitone.aamendp(message: Optional[str] = None) → None[source]

Amend the previous commit with any new changes, then push the commit.

Parameters

message – The commit message to be passed to the git commit command.

Note

The previous commit message will be reused if the message argument is not provided.