TODO: Add a short summary of this module.
deps->p6df::modules::p6git::deps()init->p6df::modules::p6git::init(_module, dir)
p6_git_cli_add(...)p6_git_cli_add_all()
p6_git_cli_branch_Delete(...)p6_git_cli_branch_create(...)p6_git_cli_branch_verbose_verbose(...)
p6_git_cli_checkout(...)p6_git_cli_checkout_default()
p6_git_cli_clean_fdx(...)
p6_git_cli_clone(...)
p6_git_cli_commit_last_edit(...)p6_git_cli_commit_squash(...)p6_git_cli_commit_verbose(...)p6_git_cli_commit_with_message(msg, ...)
p6_git_cli_diff(...)p6_git_cli_diff_head(...)p6_git_cli_diff_previous(...)
p6_git_cli_fetch_all(...)
p6_git_cli_grep(...)p6_git_cli_grep_files(...)
p6_git_cli_log_shas(file)p6_git_cli_log_since(since, [fmt=format:%h %ci %al %d %s])
p6_git_cli_merge(...)
p6_git_cli_pull_rebase_autostash_ff_only()
p6_git_cli_push_fu()p6_git_cli_push_tags(...)p6_git_cli_push_u(...)
p6_git_cli_rebase(...)p6_git_cli_rebase_abort()p6_git_cli_rebase_continue()
p6_git_cli_remote_verbose(...)
p6_git_cli_reset_hard_head(...)p6_git_cli_reset_head_ago_one(...)p6_git_cli_reset_soft_head(n)
p6_git_cli_restore_stagged(...)
p6_git_cli_revert(...)
p6_git_cli_stash_list()
p6_git_cli_status_s(...)
p6df::modules::p6git::deps()p6df::modules::p6git::init(_module, dir)
p6_git_branch_process(branch_tmpl, user, msg, pr_num)str branch = p6_git_branch_base_get()str branch = p6_git_branch_flast_get()str branch = p6_git_branch_get()str branch = p6_git_branch_template_render(branch_tmpl, user, pr_num, rest, kind)str branch_tmpl = p6_git_branch_p6_get()
p6_git_util_checkout_default()p6_git_util_clobber()p6_git_util_commit_push_fix()p6_git_util_commit_push_squashed_fix()p6_git_util_diff_default(...)p6_git_util_dirty_get()p6_git_util_inside_tree()p6_git_util_log(...)p6_git_util_shas_for_string(file, search_string)p6_git_util_sync()p6_git_util_update()path scratch_file = p6_git_util_msg_collect(editor, msg)str org = p6_git_util_org_from_origin()str repo = p6_git_util_repo_from_origin()str sha = p6_git_util_sha_short_get()str symbol = p6_git_util_symbolic_ref(ref)str symbol = p6_git_util_symbolic_ref_full(ref)
.
├── init.zsh
├── lib
│ ├── branch.sh
│ ├── cli
│ │ ├── add.sh
│ │ ├── branch.sh
│ │ ├── checkout.sh
│ │ ├── clean.sh
│ │ ├── clone.sh
│ │ ├── commit.sh
│ │ ├── diff.sh
│ │ ├── fetch.sh
│ │ ├── grep.sh
│ │ ├── log.sh
│ │ ├── merge.sh
│ │ ├── pull.sh
│ │ ├── push.sh
│ │ ├── rebase.sh
│ │ ├── remote.sh
│ │ ├── reset.sh
│ │ ├── restore.sh
│ │ ├── revert.sh
│ │ ├── stash.sh
│ │ └── status.sh
│ └── util.sh
├── README.md
└── t
├── branch.t
├── cli-branch.t
├── cli-core.t
├── cli-network.t
├── cli-remote.t
├── cli-reset.t
├── cli-stash.t
├── init.t
├── util-network.t
└── util.t
4 directories, 34 files
Philip M. Gollucci pgollucci@p6m7g8.com