├── README.markdown ├── VsSubversion.markdown ├── client └── commit-msg-trac ├── scripts ├── checkout ├── create-gitconfig ├── create-stable ├── pull ├── push └── refollow ├── server ├── functions ├── post-receive-commitnumbers ├── post-receive-email ├── post-receive-gitconfig ├── post-receive-hudson ├── post-receive-trac ├── post-receive-trac.py ├── post-receive.sample ├── update-allow-tags-branches ├── update-ensure-follows ├── update-ensure-ticket-reference ├── update-lock-check ├── update-stable └── update.sample ├── tests ├── .gitignore ├── Makefile ├── t1000-commit-msg-trac.sh ├── t1001-commit-msg-trac-merges.sh ├── t2000-update-ensure-ticket-reference.sh ├── t2001-update-ensure-ticket-reference-merges.sh ├── t2002-update-ensure-ticket-reference-branches.sh ├── t2100-update-stable.sh ├── t2200-1.txt ├── t2200-2.txt ├── t2200-post-receive-email.sh ├── t2201-1.txt ├── t2201-2.txt ├── t2201-3.txt ├── t2201-4.txt ├── t2201-5.txt ├── t2201-6.txt ├── t2201-7.txt ├── t2201-8.txt ├── t2201-post-receive-email-tags.sh ├── t2202-1.txt ├── t2202-2.txt ├── t2202-3.txt ├── t2202-4.txt ├── t2202-5.txt ├── t2202-6.txt ├── t2202-post-receive-email-branches.sh ├── t2203-1.txt ├── t2203-2.txt ├── t2203-post-receive-email-stable.sh ├── t2204-1.txt ├── t2204-post-receive-email-conflicts.sh ├── t2700-ensure-follows.sh ├── t2800-post-receive-gitconfig.sh ├── t2801-post-receive-gitconfig-hooks.sh ├── t2900-update-lock-check.sh ├── t3000-post-receive-trac.sh ├── t3001-post-receive-trac-with-commitnumbers.sh ├── t3100-update-allow-tags-branches.sh ├── t3200-post-receive-commitnumbers.sh ├── t5000-checkout.sh ├── t5100-push.sh ├── t5200-pull.sh ├── t5400-refollow.sh ├── t9000-notes.sh └── test-lib.sh └── workflow.markdown /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenh/git-central/HEAD/README.markdown -------------------------------------------------------------------------------- /VsSubversion.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenh/git-central/HEAD/VsSubversion.markdown -------------------------------------------------------------------------------- /client/commit-msg-trac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenh/git-central/HEAD/client/commit-msg-trac -------------------------------------------------------------------------------- /scripts/checkout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenh/git-central/HEAD/scripts/checkout -------------------------------------------------------------------------------- /scripts/create-gitconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenh/git-central/HEAD/scripts/create-gitconfig -------------------------------------------------------------------------------- /scripts/create-stable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenh/git-central/HEAD/scripts/create-stable -------------------------------------------------------------------------------- /scripts/pull: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenh/git-central/HEAD/scripts/pull -------------------------------------------------------------------------------- /scripts/push: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenh/git-central/HEAD/scripts/push -------------------------------------------------------------------------------- /scripts/refollow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenh/git-central/HEAD/scripts/refollow -------------------------------------------------------------------------------- /server/functions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenh/git-central/HEAD/server/functions -------------------------------------------------------------------------------- /server/post-receive-commitnumbers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenh/git-central/HEAD/server/post-receive-commitnumbers -------------------------------------------------------------------------------- /server/post-receive-email: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenh/git-central/HEAD/server/post-receive-email -------------------------------------------------------------------------------- /server/post-receive-gitconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenh/git-central/HEAD/server/post-receive-gitconfig -------------------------------------------------------------------------------- /server/post-receive-hudson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenh/git-central/HEAD/server/post-receive-hudson -------------------------------------------------------------------------------- /server/post-receive-trac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenh/git-central/HEAD/server/post-receive-trac -------------------------------------------------------------------------------- /server/post-receive-trac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenh/git-central/HEAD/server/post-receive-trac.py -------------------------------------------------------------------------------- /server/post-receive.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenh/git-central/HEAD/server/post-receive.sample -------------------------------------------------------------------------------- /server/update-allow-tags-branches: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenh/git-central/HEAD/server/update-allow-tags-branches -------------------------------------------------------------------------------- /server/update-ensure-follows: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenh/git-central/HEAD/server/update-ensure-follows -------------------------------------------------------------------------------- /server/update-ensure-ticket-reference: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenh/git-central/HEAD/server/update-ensure-ticket-reference -------------------------------------------------------------------------------- /server/update-lock-check: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenh/git-central/HEAD/server/update-lock-check -------------------------------------------------------------------------------- /server/update-stable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenh/git-central/HEAD/server/update-stable -------------------------------------------------------------------------------- /server/update.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenh/git-central/HEAD/server/update.sample -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- 1 | /trash directory 2 | -------------------------------------------------------------------------------- /tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenh/git-central/HEAD/tests/Makefile -------------------------------------------------------------------------------- /tests/t1000-commit-msg-trac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenh/git-central/HEAD/tests/t1000-commit-msg-trac.sh -------------------------------------------------------------------------------- /tests/t1001-commit-msg-trac-merges.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenh/git-central/HEAD/tests/t1001-commit-msg-trac-merges.sh -------------------------------------------------------------------------------- /tests/t2000-update-ensure-ticket-reference.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenh/git-central/HEAD/tests/t2000-update-ensure-ticket-reference.sh -------------------------------------------------------------------------------- /tests/t2001-update-ensure-ticket-reference-merges.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenh/git-central/HEAD/tests/t2001-update-ensure-ticket-reference-merges.sh -------------------------------------------------------------------------------- /tests/t2002-update-ensure-ticket-reference-branches.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenh/git-central/HEAD/tests/t2002-update-ensure-ticket-reference-branches.sh -------------------------------------------------------------------------------- /tests/t2100-update-stable.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenh/git-central/HEAD/tests/t2100-update-stable.sh -------------------------------------------------------------------------------- /tests/t2200-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenh/git-central/HEAD/tests/t2200-1.txt -------------------------------------------------------------------------------- /tests/t2200-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenh/git-central/HEAD/tests/t2200-2.txt -------------------------------------------------------------------------------- /tests/t2200-post-receive-email.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenh/git-central/HEAD/tests/t2200-post-receive-email.sh -------------------------------------------------------------------------------- /tests/t2201-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenh/git-central/HEAD/tests/t2201-1.txt -------------------------------------------------------------------------------- /tests/t2201-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenh/git-central/HEAD/tests/t2201-2.txt -------------------------------------------------------------------------------- /tests/t2201-3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenh/git-central/HEAD/tests/t2201-3.txt -------------------------------------------------------------------------------- /tests/t2201-4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenh/git-central/HEAD/tests/t2201-4.txt -------------------------------------------------------------------------------- /tests/t2201-5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenh/git-central/HEAD/tests/t2201-5.txt -------------------------------------------------------------------------------- /tests/t2201-6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenh/git-central/HEAD/tests/t2201-6.txt -------------------------------------------------------------------------------- /tests/t2201-7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenh/git-central/HEAD/tests/t2201-7.txt -------------------------------------------------------------------------------- /tests/t2201-8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenh/git-central/HEAD/tests/t2201-8.txt -------------------------------------------------------------------------------- /tests/t2201-post-receive-email-tags.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenh/git-central/HEAD/tests/t2201-post-receive-email-tags.sh -------------------------------------------------------------------------------- /tests/t2202-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenh/git-central/HEAD/tests/t2202-1.txt -------------------------------------------------------------------------------- /tests/t2202-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenh/git-central/HEAD/tests/t2202-2.txt -------------------------------------------------------------------------------- /tests/t2202-3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenh/git-central/HEAD/tests/t2202-3.txt -------------------------------------------------------------------------------- /tests/t2202-4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenh/git-central/HEAD/tests/t2202-4.txt -------------------------------------------------------------------------------- /tests/t2202-5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenh/git-central/HEAD/tests/t2202-5.txt -------------------------------------------------------------------------------- /tests/t2202-6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenh/git-central/HEAD/tests/t2202-6.txt -------------------------------------------------------------------------------- /tests/t2202-post-receive-email-branches.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenh/git-central/HEAD/tests/t2202-post-receive-email-branches.sh -------------------------------------------------------------------------------- /tests/t2203-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenh/git-central/HEAD/tests/t2203-1.txt -------------------------------------------------------------------------------- /tests/t2203-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenh/git-central/HEAD/tests/t2203-2.txt -------------------------------------------------------------------------------- /tests/t2203-post-receive-email-stable.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenh/git-central/HEAD/tests/t2203-post-receive-email-stable.sh -------------------------------------------------------------------------------- /tests/t2204-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenh/git-central/HEAD/tests/t2204-1.txt -------------------------------------------------------------------------------- /tests/t2204-post-receive-email-conflicts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenh/git-central/HEAD/tests/t2204-post-receive-email-conflicts.sh -------------------------------------------------------------------------------- /tests/t2700-ensure-follows.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenh/git-central/HEAD/tests/t2700-ensure-follows.sh -------------------------------------------------------------------------------- /tests/t2800-post-receive-gitconfig.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenh/git-central/HEAD/tests/t2800-post-receive-gitconfig.sh -------------------------------------------------------------------------------- /tests/t2801-post-receive-gitconfig-hooks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenh/git-central/HEAD/tests/t2801-post-receive-gitconfig-hooks.sh -------------------------------------------------------------------------------- /tests/t2900-update-lock-check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenh/git-central/HEAD/tests/t2900-update-lock-check.sh -------------------------------------------------------------------------------- /tests/t3000-post-receive-trac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenh/git-central/HEAD/tests/t3000-post-receive-trac.sh -------------------------------------------------------------------------------- /tests/t3001-post-receive-trac-with-commitnumbers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenh/git-central/HEAD/tests/t3001-post-receive-trac-with-commitnumbers.sh -------------------------------------------------------------------------------- /tests/t3100-update-allow-tags-branches.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenh/git-central/HEAD/tests/t3100-update-allow-tags-branches.sh -------------------------------------------------------------------------------- /tests/t3200-post-receive-commitnumbers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenh/git-central/HEAD/tests/t3200-post-receive-commitnumbers.sh -------------------------------------------------------------------------------- /tests/t5000-checkout.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenh/git-central/HEAD/tests/t5000-checkout.sh -------------------------------------------------------------------------------- /tests/t5100-push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenh/git-central/HEAD/tests/t5100-push.sh -------------------------------------------------------------------------------- /tests/t5200-pull.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenh/git-central/HEAD/tests/t5200-pull.sh -------------------------------------------------------------------------------- /tests/t5400-refollow.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenh/git-central/HEAD/tests/t5400-refollow.sh -------------------------------------------------------------------------------- /tests/t9000-notes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenh/git-central/HEAD/tests/t9000-notes.sh -------------------------------------------------------------------------------- /tests/test-lib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenh/git-central/HEAD/tests/test-lib.sh -------------------------------------------------------------------------------- /workflow.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenh/git-central/HEAD/workflow.markdown --------------------------------------------------------------------------------