ザイリンクスwikiで説明されているように、gitを使用してmaster-nextブランチからソースコードをダウンロードしたい。
私はこれを試しました:
#git clone git://github.com/Xilinx/u-boot-xlnx/tree/master-next.git
Initialized empty Git repository in /home/Hannan/master-next/.git/
fatal: remote error:
Xilinx/u-boot-xlnx/tree/master-next is not a valid repository name
Email support@github.com for help
これでも失敗しました:
# git clone git://github.com/Xilinx/tree/master-next/u-boot-xlnx.git
Initialized empty Git repository in /home/Hannan/u-boot-xlnx/.git/
fatal: remote error:
Xilinx/tree/master-next/u-boot-xlnx is not a valid repository name
Email support@github.com for help
動作するコマンドは次のとおりです。
git clone git://github.com/Xilinx/u-boot-xlnx.git
しかし、どのように私はこれが実際にフェッチすることを知っていますマスター-次の分岐ではなくマスターブランチを?gitを使用して特定のブランチを正しくフェッチするにはどうすればよいですか?
PuTTY経由でアクセスするRHEL 6を使用しています。