githubプロジェクトの別のブランチを追跡しようとしています。プロジェクトはrestful_authenticationです:
http://github.com/technoweenie/restful-authentication
ただし、実際にクローンを作成したいのは、モジュラーブランチです。
http://github.com/technoweenie/restful-authentication/tree/modular
私はこのガイドを見つけました:
http://github.com/guides/showing-and-tracking-remote-branches
次のようないくつかのコマンドを試しました。
git checkout --track -b lmod http://github.com/technoweenie/restful-authentication/tree/modular
と
git checkout --track -b lmod git://github.com/technoweenie/restful-authentication.git/modular
しかし、次のエラーが発生します。
fatal: git checkout: updating paths is incompatible with switching branches
これを行う正しい方法について何か考えはありますか?
ありがとう