我正在使用fuelphp并意识到fuelphp带有他自己的.git文件夹。
我想使用自己的git repo。 我想当我只将燃料文件夹添加到我的vcs时,这是最好的方法吗? 但是我丢失了框架代码和作曲家文件以及其他一些东西。
我真的很困惑这应该如何运作。也许有人可以告诉我哪些部分很重要,或者是否有策略或良好实践。 谢谢!
答案 0 :(得分:0)
最好的方法是为项目添加新的来源。
oil create [project_name]
cd [project_name]
git remote rename origin fuelphp
git branch master
git checkout master
git remote add origin [your_git_repo_address]
git config branch.master.remote origin
git config branch.master.merge refs/heads/master
git clone --bare . [your_git_repo_address]
git push
git remote add origin [your_git_repo_address]
git push -u origin --all
git push -u origin --tags