我的要求是仅从主存储库中提取和推送特定文件夹的文件。我使用的方法只是帮助我拉取特定文件夹的文件,而不是推送。
所以在我的主仓库中,我的文件夹结构如下所示。
mainfolder
examfold1
examfold2
examfold3
这就是我正在做的。
git clone http://123456@onestash-test.com/mainfolder
cd mainfolder
git config core.sparseCheckout true
echo examfold3/*> .git/info/sparse-checkout
这在我拉动时工作正常,它不会将文件带到其他文件夹,但它也不会为examfold3 带来文件,并且当我从本地存储库进行一些文件更改后推送时出现以下错误。
! [rejected] master -> master (non-fast-forward)
error: failed to push some refs to 'http://123456@onestash-test.com/mainfolder'
hint: Updates were rejected because the tip of your current branch is behind
hint: its remote counterpart. Integrate the remote changes (e.g.
hint: 'git pull ...') before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.
我相信 git 认为我的本地 repo 没有与 master 同步,因为我没有为其他文件夹提取文件。任何帮助将不胜感激。提前致谢。