forked from git-for-windows/git
-
Notifications
You must be signed in to change notification settings - Fork 95
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #329: Add
git update-microsoft-git
This adds a new builtin, `git update-microsoft-git`, that executes the platform-specific upgrade steps to get the latest version of `microsoft-git`. On Windows, this means running `git update-git-for-windows` which was updated to use the `microsoft/git` releases page, when appropriate. See #321 for details. On macOS, this means running a sequence of `brew` commands. These are adapted from the `UpgradeVerb` in `microsoft/scalar`, with an important simplification: we don't need to differentiate between the `scalar` and `scalar-azrepos` cask.
- Loading branch information
Showing
6 changed files
with
101 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
git-update-microsoft-git(1) | ||
=========================== | ||
|
||
NAME | ||
---- | ||
git-update-microsoft-git - Update the installed version of Git | ||
|
||
|
||
SYNOPSIS | ||
-------- | ||
[verse] | ||
'git update-microsoft-git' | ||
|
||
DESCRIPTION | ||
----------- | ||
This version of Git is based on the Microsoft fork of Git, which | ||
has custom capabilities focused on supporting monorepos. This | ||
command checks for the latest release of that fork and installs | ||
it on your machine. | ||
|
||
|
||
GIT | ||
--- | ||
Part of the linkgit:git[1] suite |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
#include "builtin.h" | ||
#include "repository.h" | ||
#include "parse-options.h" | ||
#include "run-command.h" | ||
#include "strvec.h" | ||
|
||
#if defined(GIT_WINDOWS_NATIVE) | ||
/* | ||
* On Windows, run 'git update-git-for-windows' which | ||
* is installed by the installer, based on the script | ||
* in git-for-windows/build-extra. | ||
*/ | ||
static int platform_specific_upgrade(void) | ||
{ | ||
int res; | ||
struct strvec args = STRVEC_INIT; | ||
|
||
strvec_push(&args, "git-update-git-for-windows"); | ||
res = run_command_v_opt(args.v, 0); | ||
strvec_clear(&args); | ||
return res; | ||
} | ||
#elif defined(__APPLE__) | ||
/* | ||
* On macOS, we expect the user to have the microsoft-git | ||
* cask installed via Homebrew. We check using these | ||
* commands: | ||
* | ||
* 1. 'brew update' to get latest versions. | ||
* 2. 'brew upgrade --cask microsoft-git' to get the | ||
* latest version. | ||
*/ | ||
static int platform_specific_upgrade(void) | ||
{ | ||
int res; | ||
struct strvec args = STRVEC_INIT; | ||
|
||
printf("Updating Homebrew with 'brew update'\n"); | ||
|
||
strvec_pushl(&args, "brew", "update", NULL); | ||
res = run_command_v_opt(args.v, 0); | ||
strvec_clear(&args); | ||
|
||
if (res) { | ||
error(_("'brew update' failed; is brew installed?")); | ||
return 1; | ||
} | ||
|
||
printf("Upgrading microsoft-git with 'brew upgrade --cask microsoft-git'\n"); | ||
strvec_pushl(&args, "brew", "upgrade", "--cask", "microsoft-git", NULL); | ||
res = run_command_v_opt(args.v, 0); | ||
strvec_clear(&args); | ||
|
||
return res; | ||
} | ||
#else | ||
static int platform_specific_upgrade(void) | ||
{ | ||
error(_("update-microsoft-git is not supported on this platform")); | ||
return 1; | ||
} | ||
#endif | ||
|
||
static const char builtin_update_microsoft_git_usage[] = | ||
N_("git update-microsoft-git"); | ||
|
||
int cmd_update_microsoft_git(int argc, const char **argv, const char *prefix) | ||
{ | ||
if (argc == 2 && !strcmp(argv[1], "-h")) | ||
usage(builtin_update_microsoft_git_usage); | ||
|
||
return platform_specific_upgrade(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters