Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我编辑了我的本地存储库,这样当我推送到master分支时,它也会推送到gh-pages.
master
gh-pages
我的本地.git/commit包含这一行。
.git/commit
push = +refs/heads/master:refs/heads/gh-pages push = +refs/heads/master:refs/heads/master
我想要这样,如果我克隆了这个 repo.git/commit仍然有上面的行.git/commit
使用 git 开箱即用,现在这是不可能的。您现在无法在拉/推/克隆上共享配置(我不得不承认这有时很有用)。
因此,在这种情况下,最好的解决方案是使用 tar/zip 而不是 git clone 共享您的存储库。这样您就可以包含该.git文件夹。
.git
否则,您可以使用和共享一个 bash 脚本来根据需要自动设置 git repo。