hatembentayeb / git_helper

Git_helper script to make life easy with git
0 stars 0 forks source link

Add more actions to give more details about the commit's reason #3

Open AbirHamzi opened 4 years ago

AbirHamzi commented 4 years ago

1/ Add -h as an option to get help on how to use script. 2/ Give more details about the commit's reason example with the following options:

# Tag can be 
#    ADD     (First commit for a file x)
#    FEAT     (new feature)
#    FIX      (bug fix)
#    REFACTOR (refactoring code)
#    STYLE   (formatting, missing semi colons, etc; no code change)
#    DOC      (changes to documentation)
#    TEST    (adding or refactoring tests; no production code change)
#    VERSION  (version bump/new release; no production code change)
#    DEBUG     (Changes in debugging code/frameworks; no production code change)
#    HACK     (Temporary fix to make things move forward; please avoid it)
#    WIP      (Work In Progress; for intermediate commits to keep patches reasonably sized)
hatembentayeb commented 4 years ago

let's begin by implementing ADD option and define it's behavior.