Difference between revisions of "Git"

From ProgClub
Jump to: navigation, search
(→‎Create new git project: Setting sharedrepository...)
(Adding gitweb doco...)
Line 1: Line 1:
 +
Git is a version control system used by ProgClub to store files related to its [[projects]].
 +
 +
= Gitweb =
 +
 +
You can browse all of ProgClub's git repositories here:
 +
 +
* [https://www.progclub.org/gitweb/ gitweb]
 +
 
= Create new git project =
 
= Create new git project =
 +
 +
To create a new project in git:
  
 
  $ ssh honesty.progclub.net
 
  $ ssh honesty.progclub.net

Revision as of 16:03, 8 April 2014

Git is a version control system used by ProgClub to store files related to its projects.

Gitweb

You can browse all of ProgClub's git repositories here:

Create new git project

To create a new project in git:

$ ssh honesty.progclub.net
$ sudo -s
# cd /git
# mkdir repo-name.git
# cd repo-name.git
# git init --bare
# echo repo-name > desription
# mv hooks/post-receive.sample hooks/post-receive
# chown -R www-data:user .
# vim config

Add:

[core]
  sharedrepository = 0666

[hooks]
  mailinglist = vcs@progclub.org
# vim hooks/post-receive

Uncomment:

. /usr/share/doc/git-core/contrib/hooks/post-receive-email

Then from your workstation:

$ git clone ssh://www.progclub.net/git/repo-name.git
$ cd repo-name
$ git commit -m "Initial empty commit" --allow-empty
$ git push origin master