# File lib/git-review/local.rb, line 288
    def on_feature_branch?
      # If current and target are the same, we are not on a feature branch.
      # If they are different, but we are on master, we should still to switch
      # to a separate branch (since master makes for a poor feature branch).
      source_branch != target_branch && source_branch != 'master'
    end