* shell script calling git fails when called from scheduler
@ 2011-03-25 22:04 Markus Heller
2011-03-25 22:19 ` Matt Harrison
0 siblings, 1 reply; 3+ messages in thread
From: Markus Heller @ 2011-03-25 22:04 UTC (permalink / raw)
To: git
Hi all,
I have the following batch shell script (org-git-synch.bat):
@ECHO OFF
REM get date and time
for /f "delims=" %%a in ('date/t') do @set mydate=%%a
for /f "delims=" %%a in ('time/t') do @set mytime=%%a
set fvar=%mydate%%mytime%
REM add all new files
call git add .
call git commit -a -m "Automated commit by org-git-sync.bat on %fvar%"
The script resides in h:/org/; and I have a working git repository in
this directory (in h:/org/.git).
I can run the script from the command line no problem, but when I try to
run it from the Windoze scheduler, all I get is a cmd window saying:
fatal: not a git repository (or any of the parent directories): .git
fatal: not a git repository (or any of the parent directories): .git
I did re-initialize the repository, but that didn't matter, since git
status and everything else works fine from the command line. I'm on Win
7 Pro 64 bit SP 1.
Any ideas?
Thanks and Cheers
Markus
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: shell script calling git fails when called from scheduler
2011-03-25 22:04 shell script calling git fails when called from scheduler Markus Heller
@ 2011-03-25 22:19 ` Matt Harrison
2011-03-25 23:03 ` Markus Heller
0 siblings, 1 reply; 3+ messages in thread
From: Matt Harrison @ 2011-03-25 22:19 UTC (permalink / raw)
To: Markus Heller; +Cc: git
[-- Attachment #1: Type: text/plain, Size: 1388 bytes --]
On Fri, Mar 25, 2011 at 03:04:05PM -0700, Markus Heller wrote:
> Hi all,
>
> I have the following batch shell script (org-git-synch.bat):
>
> @ECHO OFF
>
> REM get date and time
> for /f "delims=" %%a in ('date/t') do @set mydate=%%a
> for /f "delims=" %%a in ('time/t') do @set mytime=%%a
> set fvar=%mydate%%mytime%
>
> REM add all new files
> call git add .
> call git commit -a -m "Automated commit by org-git-sync.bat on %fvar%"
>
> The script resides in h:/org/; and I have a working git repository in
> this directory (in h:/org/.git).
>
> I can run the script from the command line no problem, but when I try to
> run it from the Windoze scheduler, all I get is a cmd window saying:
>
> fatal: not a git repository (or any of the parent directories): .git
> fatal: not a git repository (or any of the parent directories): .git
>
> I did re-initialize the repository, but that didn't matter, since git
> status and everything else works fine from the command line. I'm on Win
> 7 Pro 64 bit SP 1.
>
> Any ideas?
>
> Thanks and Cheers
> Markus
At a guess (I dont use the windows scheduler), the working directory of the batch file
is not being set to h:/org
I dont know if there is a way to tell the windows scheduler what the working directory
should be, so maybe try cd'ing to h:/org at the start of your script?
HTH
Matt
[-- Attachment #2: Type: application/pgp-signature, Size: 490 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: shell script calling git fails when called from scheduler
2011-03-25 22:19 ` Matt Harrison
@ 2011-03-25 23:03 ` Markus Heller
0 siblings, 0 replies; 3+ messages in thread
From: Markus Heller @ 2011-03-25 23:03 UTC (permalink / raw)
To: git
Matt Harrison <iwasinnamuknow@genestate.com> writes:
> On Fri, Mar 25, 2011 at 03:04:05PM -0700, Markus Heller wrote:
>> Hi all,
>>
>> I have the following batch shell script (org-git-synch.bat):
>>
>> @ECHO OFF
>>
>> REM get date and time
>> for /f "delims=" %%a in ('date/t') do @set mydate=%%a
>> for /f "delims=" %%a in ('time/t') do @set mytime=%%a
>> set fvar=%mydate%%mytime%
>>
>> REM add all new files
>> call git add .
>> call git commit -a -m "Automated commit by org-git-sync.bat on %fvar%"
>>
>> The script resides in h:/org/; and I have a working git repository in
>> this directory (in h:/org/.git).
>>
>> I can run the script from the command line no problem, but when I try to
>> run it from the Windoze scheduler, all I get is a cmd window saying:
>>
>> fatal: not a git repository (or any of the parent directories): .git
>> fatal: not a git repository (or any of the parent directories): .git
>>
>> I did re-initialize the repository, but that didn't matter, since git
>> status and everything else works fine from the command line. I'm on Win
>> 7 Pro 64 bit SP 1.
>>
>> Any ideas?
>>
>> Thanks and Cheers
>> Markus
>
> At a guess (I dont use the windows scheduler), the working directory of the batch file
> is not being set to h:/org
>
> I dont know if there is a way to tell the windows scheduler what the working directory
> should be, so maybe try cd'ing to h:/org at the start of your script?
Thanks Matt,
this was the problem. U can specify the directory where the script
should be run in the scheduler.
Cheers
Markus
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2011-03-25 23:03 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-03-25 22:04 shell script calling git fails when called from scheduler Markus Heller
2011-03-25 22:19 ` Matt Harrison
2011-03-25 23:03 ` Markus Heller
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).