Forrest logo
back to context overview

git-feature

List of commands for git-feature:

  • git-feature:tldr:0a254 git-feature: Merge a feature branch into the current branch creating a merge commit.
    $ git feature finish ${feature_branch}
    try on your machine
    explain this command
  • git-feature:tldr:97550 git-feature: Send changes from a specific feature branch to its remote counterpart.
    $ git feature ${feature_branch} --remote ${remote_name}
    try on your machine
    explain this command
  • git-feature:tldr:c0172 git-feature: Merge a feature branch into the current branch squashing the changes into one commit.
    $ git feature finish --squash ${feature_branch}
    try on your machine
    explain this command
  • git-feature:tldr:ca30d git-feature: Create and switch to a new feature branch.
    $ git feature ${feature_branch}
    try on your machine
    explain this command
back to context overview