Setup git repo post-receive on Windows

1.1k Views Asked by At

I would like to setup git deployment on my Windows server, but I'm having some trouble changing director from the git post-receive event. I get a "No such file or directory" error.

I have the following setup:

  1. a git repository on a Windows share //share/git/repo/
  2. a post-receive configure as following:

    #!/bin/sh

    echo "Building the Arla Solution"

    cd /c/Builds

    unset GIT_DIR

    git pull origin master

    echo "Doing some post build actions..."

When I do a commit/push to the repository if fails on the line: cd C:/Builds.

I've setup something similar on a Linux server (VPS) without any problems. I think the problem is how I've formatted the change directory.

Any suggestions?

1

There are 1 best solutions below

2
On

git's bash (AFAIK) is unfamiliar with C:,
Try replacing the relevant line to /c/Builds
Keep in mind bash is case sensitive unlike Windows