
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 machineexplain 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 machineexplain 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 machineexplain this command
-
git-feature:tldr:ca30d git-feature: Create and switch to a new feature branch.$ git feature ${feature_branch}try on your machineexplain this command