mirror of
https://github.com/fortressforever/git-svn-sync.git
synced 2024-11-24 13:01:10 +00:00
4c12f4021f
This contains multiple scripts: - A script to synchronize an existing git repository with subversion via a git synch client - hooks for the git server to trigger the sync after a push - a hook for the client to reject every manual change - A script to create a new git server repository, along with the git synch client, starting from an existing subversion repository.
6 lines
150 B
Bash
Executable file
6 lines
150 B
Bash
Executable file
# -*- mode: Shell-script-*-
|
|
#!/usr/bin/bash
|
|
#
|
|
# Author: Mario Fernandez
|
|
echo "The synchronization client does not accept manual modifications"
|
|
exit 1
|