Home
last modified time | relevance | path

Searched refs:Git (Results 1 – 25 of 52) sorted by relevance

123

/expo/tools/src/publish-packages/tasks/
H A DcheckRepositoryStatus.ts4 import Git from '../../Git';
26 const currentBranch = await Git.getCurrentBranchNameAsync();
27 const trackingBranch = await Git.getTrackingBranchNameAsync();
36 await Git.fetchAsync();
38 const stats = await Git.compareBranchesAsync(currentBranch, trackingBranch);
47 if (await Git.hasUnstagedChangesAsync()) {
H A DpushCommittedChanges.ts1 import Git from '../../Git';
22 const currentBranch = await Git.getCurrentBranchNameAsync();
23 await Git.pushAsync({ track: currentBranch });
H A DcommitStagedChanges.ts3 import Git from '../../Git';
20 const stagedFiles = await Git.getStagedFilesAsync();
37 await Git.commitAsync({
H A DpublishPackages.ts5 import Git from '../../Git';
25 const gitHead = await Git.getHeadCommitHashAsync();
H A DcheckPackagesIntegrity.ts4 import Git from '../../Git';
33 const isAncestor = !!pkgView.gitHead && (await Git.isAncestorAsync(pkgView.gitHead));
H A DcommentOnIssuesTask.ts7 import Git from '../../Git';
55 const currentBranchName = await Git.getCurrentBranchNameAsync();
H A DloadRequestedParcels.ts4 import Git from '../../Git';
136 const gitDir = new Git.Directory(pkg.path);
/expo/tools/src/commands/
H A DCherryPickCommand.ts6 import Git, { GitLog } from '../Git';
50 if (!options.dry && (await Git.hasUnstagedChangesAsync())) {
56 const currentBranch = await Git.getCurrentBranchNameAsync();
80 const mergeBase = await Git.mergeBaseAsync(source, destination);
81 const commitsOnDestinationBranch = await Git.logAsync({
96 await Git.logAsync({
170 if (destination !== (await Git.getCurrentBranchNameAsync())) {
175 await Git.checkoutAsync(destination);
190 await Git.cherryPickAsync(commitHashes, { inheritStdio: true });
H A DSyncSdkBranchChangelogs.ts6 import Git from '../Git';
28 await Git.fetchAsync();
61 await Git.readFileAsync(`origin/${sourceBranch}`, pkg.changelogPath)
H A DPublishPackages.ts7 import Git from '../Git';
126 const headCommitHash = await Git.getHeadCommitHashAsync();
148 head: await Git.getHeadCommitHashAsync(),
H A DWorkflowDispatch.ts6 import Git from '../Git';
72 const ref = options.ref || (await Git.getCurrentBranchNameAsync());
H A DClientBuild.ts10 import Git from '../Git';
54 const sdkBranchVersion = await Git.getSDKVersionFromBranchNameAsync();
/expo/tools/src/check-packages/
H A DgetPackagesToCheckAsync.ts4 import Git from '../Git';
13 return await Git.mergeBaseAsync(ref);
51 const changedFiles = await Git.logFilesAsync({ fromCommit: mergeBase });
/expo/guides/
H A DREADME.md8 - [Git and Code Reviews](Git%20and%20Code%20Reviews.md)
H A DUsing CocoaPods.md7 … CocoaPods better than Git submodules for iOS development” Quora question](https://www.quora.com/W…
/expo/tools/src/code-review/reviewers/
H A DreviewForbiddenFiles.ts5 import Git from '../../Git';
20 const listTree = await Git.listTreeAsync(
H A DlintSwiftFiles.ts4 import Git from '../../Git';
28 const newFileContent = await Git.readFileAsync(pullRequest.head.sha, fileDiff.to!);
/expo/docs/pages/eas-update/
H A Deas-cli.mdx10 …build's native code. Branches are an ordered list of updates, similar to a Git branch, which is an…
87Git, we can use the `--auto` flag to auto-fill the branch name and the message. This flag will use…
116 > Republish is similar to a Git reversion, where the correct commit is placed on top of the Git his…
/expo/
H A D.prettierignore12 # Git submodules
H A D.eslintignore12 # Git submodules
/expo/docs/pages/build-reference/
H A Dgit-submodules.mdx2 title: Use Git Submodules
8 …king directory is uploaded to EAS Build as it is, including the content of Git submodules. However…
/expo/tools/src/versioning/android/versionCxx/
H A Dindex.ts7 import Git from '../../../Git';
89 return Git.discardFilesAsync(packageFiles);
/expo/tools/src/
H A DTasksRunner.ts5 import Git from './Git';
242 await Git.addFilesAsync(task.filesToStage);
245 await Git.discardFilesAsync(task.filesToStage);
/expo/.github/actions/expo-git-decrypt/
H A Daction.yml1 name: 'Expo Git Decrypt'
/expo/tools/src/code-review/
H A Dindex.ts3 import Git from '../Git';
67 await Git.fetchAsync({

123