Installing git - Bare minimum

Hi,

I need to install devel/git on my webserver in order to use this wordpress plugin
So far I installed git using pkg install git and I now have it installed..
Question is what do i do now? All the help I found online is mainly for setting real life collaboration git repository..
http://bin63.com/how-to-setup-a-git-repository-on-freebsd
https://forums.freebsd.org/threads/10810/

I understand that my /etc.rc.conf must have
Code:
git_daemon_enable="YES"
Do I need
Code:
git_daemon_directory="/git"
git_daemon_flags="--syslog --base-path=/git --export-all --reuseaddr --detach"
 
The plugin only requires the client-side git(1) command. It does not require a complete hosted Git repository.
 
SirDice ,
Does the git(1) client-side come with pkg install git? I'am asking as I could find a git-client.
If yes does it mean that I haven't got to configure anything?
 
Hi,

I need to install devel/git on my webserver in order to use this wordpress plugin
So far I installed git using pkg install git and I now have it installed..
Question is what do i do now? All the help I found online is mainly for setting real life collaboration git repository..
http://bin63.com/how-to-setup-a-git-repository-on-freebsd
https://forums.freebsd.org/threads/10810/

I understand that my /etc.rc.conf must have
Code:
git_daemon_enable="YES"
Do I need
Code:
git_daemon_directory="/git"
git_daemon_flags="--syslog --base-path=/git --export-all --reuseaddr --detach"

Looks like you are not very familiar with git. Start by reading the book Pro Git

https://git-scm.com/book/en/v2

You can also use

http://ohshitgit.com/
 
Back
Top