-
Notifications
You must be signed in to change notification settings - Fork 617
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feat/update scheduler v2 #155
Feat/update scheduler v2 #155
Conversation
Signed-off-by: Roger Meier <[email protected]>
git-extra/git-update
Outdated
@@ -5,6 +5,13 @@ | |||
# when confirmation to do so is given. | |||
|
|||
git_update () { | |||
proxy=$(git config --get http.proxy) | |||
if test "$proxy" != "" |
This comment was marked as off-topic.
This comment was marked as off-topic.
Sorry, something went wrong.
git-extra/git-update
Outdated
proxy=$(git config --get http.proxy) | ||
if test "$proxy" != "" | ||
then | ||
export https_proxy="http://$proxy" |
This comment was marked as off-topic.
This comment was marked as off-topic.
Sorry, something went wrong.
|
||
[UninstallRun] | ||
Filename: "schtasks"; \ | ||
Parameters: "/Delete /F /TN ""Git for Windows Updater"""; \ |
This comment was marked as off-topic.
This comment was marked as off-topic.
Sorry, something went wrong.
2ad7207
to
debc320
Compare
Signed-off-by: Roger Meier <[email protected]> Signed-off-by: Johannes Schindelin <[email protected]>
debc320
to
df85f0c
Compare
Thank you! I actually just realized that I can force-push updates to your branch, so i just went ahead and made the modifications myself. While at it, I also redirected a couple more messages to stderr. |
The Git installer now offers [an option to keep Git up-to-date](#155). Signed-off-by: Johannes Schindelin <[email protected]>
@dscho Thank so much! |
This replaces #153 and uses git
http.proxy
settings as suggested by @dscho