[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [O] Bash script to update - only make when update there?
From: |
Rainer M Krug |
Subject: |
Re: [O] Bash script to update - only make when update there? |
Date: |
Thu, 12 Dec 2013 10:00:22 +0100 |
User-agent: |
Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:24.0) Gecko/20100101 Thunderbird/24.1.1 |
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
On 12/10/13, 21:50 , Samuel Wales wrote:
> gitpullv () { #echo \=== maybe need to grab tags head=`git
> rev-parse --verify HEAD` echo git pull --stat --log | cat echo
> newhead=`git rev-parse --verify HEAD` if [ "$newhead" != "$head" ]
> then git log --pretty=tformat:%s ORIG_HEAD.. | cat # git log
> --pretty=tformat:%s --graph ORIG_HEAD.. echo echo '= you can now do
> git diff ORIG_HEAD -- files pipe tee' return 0 else return 1 fi
> #git gc --auto git status }
Wow - and I expected a return code from git which I could simply
compare evaluate if there has something updated...
Well - I will stay with my simple update script.
Thanks,
Rainer
>
>
> On 12/10/13, Rainer M Krug <address@hidden> wrote:
>
>
> On 12/10/13, 20:31 , Nick Dokos wrote:
>>>> Rainer M Krug <address@hidden> writes:
>>>>
>>>>> On 12/10/13, 16:59 , Nick Dokos wrote:
>>>>>> ... Be that as it may, you can try something like this
>>>>>> hack (those are backticks around the git pull - it's
>>>>>> under the ESC key in the upper left hand corner on most
>>>>>> US keyboards but it may be somewhere else on yours):
>>>>>>
>>>>>> if [ "`git pull`" == "Already up-to-date" ] then echo "Up
>>>>>> to date" else make update fi
>>>>>
>>>>> True - but if git pull does change the message, I have to
>>>>> change it as well - I just leave it as it is.
>>>>>
>>>>
>>>> Here for your amusement is a way to get around this problem:
>>>>
>>>> if [ "`git pull`" == "`git pull`" ] then echo Up to date else
>>>> make update fi
>>>>
>>>> You pay double the cost every time you use it but if they
>>>> ever *do* change the message, it's not going to break. But of
>>>> course, if the shell ever optimizes the second git pull away,
>>>> you are back at square one...
>
> I like it - optimization which not necessarily is faster....
>
> Cheers,
>
> Rainer
>
>
>>>>
>>>> With-tongue-firmly-in-cheek-ly yours, Nick
>>>>
>>>>
>>>>
>>>>
>>>>
>
>>
>>
>
>
- --
Rainer M. Krug, PhD (Conservation Ecology, SUN), MSc (Conservation
Biology, UCT), Dipl. Phys. (Germany)
Centre of Excellence for Invasion Biology
Stellenbosch University
South Africa
Tel : +33 - (0)9 53 10 27 44
Cell: +33 - (0)6 85 62 59 98
Fax : +33 - (0)9 58 10 27 44
Fax (D): +49 - (0)3 21 21 25 22 44
email: address@hidden
Skype: RMkrug
-----BEGIN PGP SIGNATURE-----
Version: GnuPG/MacGPG2 v2.0.22 (Darwin)
Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/
iQEcBAEBAgAGBQJSqXsmAAoJENvXNx4PUvmCp5cH/Rif3YwvLrftxJm1loAudCxP
aGeU/iF8pOv6K8b106svUej6efVGa4c4nBO8356V+krX+jJVkzXU8nwcNGusWVFz
aRy6a0TBIm29ySmOAFIOalrXMfFOkSI0yc4MiTFoeGQ4ZSb8Cp6029hxMB+nuZyV
JHpuuFdq7LomIia+jMYtqeIuoKEeizRU8qh+cvYqilFb4i1Rpm9WBlLPbkpMXMiN
yl0R2GP3S8t+5iBm5yqvA8V9v1XsH541b5c+7q29epZSFwJnPXCUd2koLkBKmbrl
3MuAzz3CvTpMhZcf4aptV/1tLUdmWuXQE8FbSZEzWdi+7AakTPOSzb8H+ec278w=
=vgdf
-----END PGP SIGNATURE-----
- [O] Bash script to update - only make when update there?, Rainer M Krug, 2013/12/10
- Re: [O] Bash script to update - only make when update there?, Nick Dokos, 2013/12/10
- Re: [O] Bash script to update - only make when update there?, Rainer M Krug, 2013/12/10
- Re: [O] Bash script to update - only make when update there?, Nick Dokos, 2013/12/10
- Re: [O] Bash script to update - only make when update there?, Rainer M Krug, 2013/12/10
- Re: [O] Bash script to update - only make when update there?, Samuel Wales, 2013/12/10
- Re: [O] Bash script to update - only make when update there?,
Rainer M Krug <=
- Re: [O] Bash script to update - only make when update there?, Suvayu Ali, 2013/12/12
- Re: [O] Bash script to update - only make when update there?, Rainer M Krug, 2013/12/13
Re: [O] Bash script to update - only make when update there?, Achim Gratz, 2013/12/10