I'm looking for a part-time remote job.

Hire me


I'm the author of:

Mastering Redmine is a comprehensive guide with tips, tricks and best practices, and an easy-to-learn structure.

Check the book's project or

Buy the book

Social pages of the book:

By buying this book you also donate to Redmine (see this page).


Follow me:

scm.yml

my scm conf file - Paul Birnbaum, 27 Sep 2014 13:37

Download (890 Bytes)

 
1
production:
2
  deny_delete: false
3
  auto_create: false
4
  force_repository: false
5
  pre_create: /usr/local/bin/pre-create.sh
6
  post_create: /usr/local/bin/post-create.sh
7
  pre_delete: /usr/local/bin/pre-delete.sh
8
  post_delete: /usr/local/bin/post-delete.sh
9
  max_repos: 0
10
  only_creator: false
11
  allow_add_local: false
12
  allow_pickup: false
13
  svn:
14
    path: /var/lib/svn
15
    svnadmin: /usr/bin/svnadmin
16
    url: svn
17
  git:
18
    path: /var/lib/git
19
    git: /usr/bin/git
20
    options: --bare
21
    url: http://git.myhost.com
22
    update_server_info: true
23
    git_ext: true
24
    append: trunk
25
  mercurial:
26
    path: /var/lib/mercurial
27
    hg: /usr/bin/hg
28
  bazaar:
29
    path: /var/lib/bazaar
30
    bzr: /usr/bin/bzr
31
    init: init-repository
32
    log_encoding: UTF-8
33
  github:
34
    path: /var/lib/github
35
    api:
36
      username: mylogin
37
      password: my_password
38
      register_hook: true
39

    
40
development:
Terms of use | Privacy policy