2014-06-27 60 views
0

我正在運行傀儡企業我需要在模塊torrancew-account的devel分支中的功能。需要關於是否需要叉傀儡模塊torrancew帳戶的建議

具體而言,我需要的功能是允許我對共享主目錄的系統用戶帳戶進行puppetize。它被稱爲「allowdupes」。

我不知道如何分叉模塊,我也不確定我是否可以將torrancew-account的devel分支克隆到/ etc/puppetlabs/puppet/modules中,並期望它可以正常工作。我迫不及待地想要提交他的allowdupes功能。

回答

2

您可以從github中取出存儲庫並切換到分支。

$ git clone https://github.com/user/repo 
$ cd repo 
$ git checkout branch_name 

之後branch_name將成爲您當前的工作分支。如果你想要,你可以在git hub上分配回購。將其克隆到您的工作站,將其合併到主服務器,然後推回到github。從那裏你可以使用你的叉子而不是原作者。

https://help.github.com/articles/fork-a-repo

$ git clone https://github.com/yourname/repo 
$ cd repo 
$ git merge branch_name 
$ git push origin master