Forrest logo
back to context overview

git-flow

List of commands for git-flow:

  • git-flow:tldr:124d0 git-flow: Publish a feature to the remote server.
    $ git flow feature publish ${feature}
    try on your machine
    explain this command
  • git-flow:tldr:791ef git-flow: Start developing on a feature branch based on `develop`.
    $ git flow feature start ${feature}
    try on your machine
    explain this command
  • git-flow:tldr:7f9a1 git-flow: Initialize it inside an existing Git repository.
    $ git flow init
    try on your machine
    explain this command
  • git-flow:tldr:8e789 git-flow: Finish development on a feature branch, merging it into the `develop` branch and deleting it.
    $ git flow feature finish ${feature}
    try on your machine
    explain this command
  • git-flow:tldr:94d9d git-flow: Get a feature published by another user.
    $ git flow feature pull origin ${feature}
    try on your machine
    explain this command
back to context overview