github - Need advice on whether to fork puppet module torrancew-account -
i'm running puppet enterprise need feature that's in devel branch of module torrancew-account.
specifically need feature allows me puppetize system user accounts share home directories. it's called "allowdupes."
i don't know how fork modules nor sure if can git clone devel branch of torrancew-account /etc/puppetlabs/puppet/modules , expect work. can't wait author pull in allowdupes feature.
you can pull repository off of github , switch branch.
$ git clone https://github.com/user/repo $ cd repo $ git checkout branch_name
after branch_name
current working branch. if wanted can fork repo on git hub. clone workstation, merge master, push github. there can use fork rather original authors.
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
Comments
Post a Comment