我有一个空的git存储库,我想通过从远程存储库中的提交来获取提交。例如,我做
git init
git remote add origin https://github.com/torvalds/linux.git
git pull --no-edit -s recursive -X theirs . 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2
但是,这样做给我一个错误fatal: no matching remote head
。我想知道是否可以使用git从头开始逐一提交?
以另一种方式提出问题。我想模拟git clone
,但不是想git clone
获取所有提交,而是要一个接一个地提交,这使我可以在两者之间执行其他工作。
谢谢!