gitone package¶
Module contents¶
gitone: a Python package that facilitates git version control.
-
gitone.
camp
(commit_message: Optional[str] = None) → None[source]¶ Add and commit 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
(commit_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
(commit_message: Optional[str] = None) → None[source]¶ Add and commit 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
(commit_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.
caamp
(commit_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
A commit message will be automatically generated if the
message
argument is not provided.
-
gitone.
acamp
(commit_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
A commit message will be automatically generated if the
message
argument is not provided.
-
gitone.
caam
(commit_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
A commit message will be automatically generated if the
message
argument is not provided.