私はgithub for mac
を設定しましたが、今は端末からgitコマンドを使用しようとしています。Git: 'rebase'はgitコマンドではありません。 'git --help'を参照してください
私はgit rebase
コマンドを実行しようとする場合は、ヘルプ出力からリベースが存在しているオプションを見ることができるように、私は次のようなメッセージ
> cd /Applications/GitHub.app/Contents/Resources/git/bin
> git rebase
git: 'rebase' is not a git command. See 'git --help'.
>git --help
usage: git [--version] [--exec-path[=<path>]] [--html-path] [--man-path] [--info-path]
[-p|--paginate|--no-pager] [--no-replace-objects] [--bare]
[--git-dir=<path>] [--work-tree=<path>] [--namespace=<name>]
[-c name=value] [--help]
<command> [<args>]
The most commonly used git commands are:
...
rebase Forward-port local commits to the updated upstream head
....
を取得します。
私のgitで何が間違っていますか?
git --version
git version 1.7.8.2
あなたの '$ PATH'は何ですか? 'git'だけでなく'。/ git'を使ってそのディレクトリから 'git'を実行する必要があると思いますが、これはシステムインストールされたバージョンを取り上げると思います。 – trojanfoe