Git CLI¶
Overview¶
git
is a
# usage: git [--version] [--help] [-C <path>] [-c <name>=<value>]
# [--exec-path[=<path>]] [--html-path] [--man-path] [--info-path]
# [-p | --paginate | -P | --no-pager] [--no-replace-objects] [--bare]
# [--git-dir=<path>] [--work-tree=<path>] [--namespace=<name>]
# [--super-prefix=<path>] [--config-env=<name>=<envvar>]
# <command> [<args>]
Some process usage
--Initation for new project
--Work in Branch
--Note: Commit to Change to Other Code
Create Branch git checkout -b branch_name
Change Branch git checkout branch_name
Push Branch
git push -u origin form_control