Re: [git-users] Silent install?

2015-09-22 Thread Will Lucas
Sorry yes, I did mean Windows.
And that is perfect, the /SAVEINF! 

Thank you so much for your help.

On Tuesday, September 22, 2015 at 12:04:22 PM UTC+1, Konstantin Khomoutov 
wrote:
>
> On Tue, 22 Sep 2015 03:48:30 -0700 (PDT) 
> Will Lucas  wrote: 
>
> > I was wondering if there are any install flags for git to be 
> > installed silently and to be able to pre-choose the install options 
> > to make it completely silent? Using the standard '/S' flag for 
> > the .exe just seems to launch it as normal. 
>
> Well, from "silent install" and ".exe" it's possible to guess you're 
> talking about Windows and Git for Windows.  Both of its available 
> versions (the latest "legacy" release, 1.9.5 and the new 2.x.x) are 
> packaged using Inno Setup and hence tricks the installers generated by 
> that product apply: 
> 1) The installer is able to run in a "simulated" mode in which it allows 
>the user to make the necessary choices in the installer's UI and 
>save them in an INI-formatted file which can later be used for 
>"preceeding" the installation.  That's the "/SAVEINF=name" 
>and "/LOADINF=name" command-line options. 
> 2) It supports the "/SILENT" and "/VERYSILENT" command-line options. 
>
> You can read about this stuff in [1]. 
>
> Not sure by which conventions "/S" has some stanzardized meaning. 
>
> 1. http://www.jrsoftware.org/ishelp/index.php?topic=setupcmdline 
>

-- 
You received this message because you are subscribed to the Google Groups "Git 
for human beings" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to git-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [git-users] Silent install?

2015-09-22 Thread Konstantin Khomoutov
On Tue, 22 Sep 2015 03:48:30 -0700 (PDT)
Will Lucas  wrote:

> I was wondering if there are any install flags for git to be
> installed silently and to be able to pre-choose the install options
> to make it completely silent? Using the standard '/S' flag for
> the .exe just seems to launch it as normal.

Well, from "silent install" and ".exe" it's possible to guess you're
talking about Windows and Git for Windows.  Both of its available
versions (the latest "legacy" release, 1.9.5 and the new 2.x.x) are
packaged using Inno Setup and hence tricks the installers generated by
that product apply:
1) The installer is able to run in a "simulated" mode in which it allows
   the user to make the necessary choices in the installer's UI and
   save them in an INI-formatted file which can later be used for
   "preceeding" the installation.  That's the "/SAVEINF=name"
   and "/LOADINF=name" command-line options.
2) It supports the "/SILENT" and "/VERYSILENT" command-line options.

You can read about this stuff in [1].

Not sure by which conventions "/S" has some stanzardized meaning.

1. http://www.jrsoftware.org/ishelp/index.php?topic=setupcmdline

-- 
You received this message because you are subscribed to the Google Groups "Git 
for human beings" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to git-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[git-users] Silent install?

2015-09-22 Thread Will Lucas
Hi all,

I was wondering if there are any install flags for git to be installed 
silently and to be able to pre-choose the install options to make it 
completely silent? Using the standard '/S' flag for the .exe just seems to 
launch it as normal.

Thanks,

-- 
You received this message because you are subscribed to the Google Groups "Git 
for human beings" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to git-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [git-users] Silent install?

2015-09-22 Thread Philip Oakley

From: "Konstantin Khomoutov" 

On Tue, 22 Sep 2015 03:48:30 -0700 (PDT)
Will Lucas  wrote:


I was wondering if there are any install flags for git to be
installed silently and to be able to pre-choose the install options
to make it completely silent? Using the standard '/S' flag for
the .exe just seems to launch it as normal.


Well, from "silent install" and ".exe" it's possible to guess you're
talking about Windows and Git for Windows.  Both of its available
versions (the latest "legacy" release, 1.9.5 and the new 2.x.x) are
packaged using Inno Setup and hence tricks the installers generated by
that product apply:
1) The installer is able to run in a "simulated" mode in which it allows
  the user to make the necessary choices in the installer's UI and
  save them in an INI-formatted file which can later be used for
  "preceeding" the installation.  That's the "/SAVEINF=name"
  and "/LOADINF=name" command-line options.
2) It supports the "/SILENT" and "/VERYSILENT" command-line options.

You can read about this stuff in [1].

Not sure by which conventions "/S" has some stanzardized meaning.

1. http://www.jrsoftware.org/ishelp/index.php?topic=setupcmdline


Hi Konstantin,
This sounds ideal for the G4W wiki (assuming it isn't already there and I 
missed it).
Philip 


--
You received this message because you are subscribed to the Google Groups "Git for 
human beings" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to git-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [git-users] silent install for Git

2012-07-31 Thread Konstantin Khomoutov
On Tue, 31 Jul 2012 09:13:27 -0700 (PDT)
Gabby Romano omerik...@gmail.com wrote:

 Can anyone show me how to create a silent install of Git on Windows 
 Linux ? I didn't find anything I could understand clearly how to
 achieve that.
Stock Git for Windows installer is prepared using the InnoSetup program
and hence should obey the /SILENT and /VERYSILENT command-line options.
Note that this will install Git with default settings.
IIRC, there's currently no way to somehow affect (or preseed) this --
you will need to either hack the installation script according to your
needs and build your own setup package or perform certain post-install
steps (which can be scripted, see [1]).

As to Linux, I don't see how your question applies here.  For a start,
Linux is the name of an OS kernel, not an OS in itself.
And Linux-based usually package Git already so installing it is a
matter of running something like
# apt-get install git
so I fail to see how your question applies for this case.

1. http://groups.google.com/group/msysgit/browse_thread/thread/5133cccd9b82887d/

-- 
You received this message because you are subscribed to the Google Groups Git 
for human beings group.
To post to this group, send email to git-users@googlegroups.com.
To unsubscribe from this group, send email to 
git-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/git-users?hl=en.



Re: [git-users] silent install for Git

2012-07-31 Thread Gabby Romano
Thanks you both. I'll check these resources.

Konstantin - you are correct regarding the Linux part - not  really an
issue.

On Tue, Jul 31, 2012 at 8:01 PM, Konstantin Khomoutov 
flatw...@users.sourceforge.net wrote:

 On Tue, 31 Jul 2012 09:13:27 -0700 (PDT)
 Gabby Romano omerik...@gmail.com wrote:

  Can anyone show me how to create a silent install of Git on Windows 
  Linux ? I didn't find anything I could understand clearly how to
  achieve that.
 Stock Git for Windows installer is prepared using the InnoSetup program
 and hence should obey the /SILENT and /VERYSILENT command-line options.
 Note that this will install Git with default settings.
 IIRC, there's currently no way to somehow affect (or preseed) this --
 you will need to either hack the installation script according to your
 needs and build your own setup package or perform certain post-install
 steps (which can be scripted, see [1]).

 As to Linux, I don't see how your question applies here.  For a start,
 Linux is the name of an OS kernel, not an OS in itself.
 And Linux-based usually package Git already so installing it is a
 matter of running something like
 # apt-get install git
 so I fail to see how your question applies for this case.

 1.
 http://groups.google.com/group/msysgit/browse_thread/thread/5133cccd9b82887d/


-- 
You received this message because you are subscribed to the Google Groups Git 
for human beings group.
To post to this group, send email to git-users@googlegroups.com.
To unsubscribe from this group, send email to 
git-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/git-users?hl=en.