| /expo/tools/src/publish-packages/tasks/ |
| H A D | checkRepositoryStatus.ts | 4 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 D | pushCommittedChanges.ts | 1 import Git from '../../Git'; 22 const currentBranch = await Git.getCurrentBranchNameAsync(); 23 await Git.pushAsync({ track: currentBranch });
|
| H A D | commitStagedChanges.ts | 3 import Git from '../../Git'; 20 const stagedFiles = await Git.getStagedFilesAsync(); 37 await Git.commitAsync({
|
| H A D | publishPackages.ts | 5 import Git from '../../Git'; 25 const gitHead = await Git.getHeadCommitHashAsync();
|
| H A D | checkPackagesIntegrity.ts | 4 import Git from '../../Git'; 33 const isAncestor = !!pkgView.gitHead && (await Git.isAncestorAsync(pkgView.gitHead));
|
| H A D | commentOnIssuesTask.ts | 7 import Git from '../../Git'; 55 const currentBranchName = await Git.getCurrentBranchNameAsync();
|
| H A D | loadRequestedParcels.ts | 4 import Git from '../../Git'; 136 const gitDir = new Git.Directory(pkg.path);
|
| /expo/tools/src/commands/ |
| H A D | CherryPickCommand.ts | 6 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 D | SyncSdkBranchChangelogs.ts | 6 import Git from '../Git'; 28 await Git.fetchAsync(); 61 await Git.readFileAsync(`origin/${sourceBranch}`, pkg.changelogPath)
|
| H A D | PublishPackages.ts | 7 import Git from '../Git'; 126 const headCommitHash = await Git.getHeadCommitHashAsync(); 148 head: await Git.getHeadCommitHashAsync(),
|
| H A D | WorkflowDispatch.ts | 6 import Git from '../Git'; 72 const ref = options.ref || (await Git.getCurrentBranchNameAsync());
|
| H A D | ClientBuild.ts | 10 import Git from '../Git'; 54 const sdkBranchVersion = await Git.getSDKVersionFromBranchNameAsync();
|
| /expo/tools/src/check-packages/ |
| H A D | getPackagesToCheckAsync.ts | 4 import Git from '../Git'; 13 return await Git.mergeBaseAsync(ref); 51 const changedFiles = await Git.logFilesAsync({ fromCommit: mergeBase });
|
| /expo/guides/ |
| H A D | README.md | 8 - [Git and Code Reviews](Git%20and%20Code%20Reviews.md)
|
| H A D | Using CocoaPods.md | 7 … CocoaPods better than Git submodules for iOS development” Quora question](https://www.quora.com/W…
|
| /expo/tools/src/code-review/reviewers/ |
| H A D | reviewForbiddenFiles.ts | 5 import Git from '../../Git'; 20 const listTree = await Git.listTreeAsync(
|
| H A D | lintSwiftFiles.ts | 4 import Git from '../../Git'; 28 const newFileContent = await Git.readFileAsync(pullRequest.head.sha, fileDiff.to!);
|
| /expo/docs/pages/eas-update/ |
| H A D | eas-cli.mdx | 10 …build's native code. Branches are an ordered list of updates, similar to a Git branch, which is an… 87 …Git, 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 | .prettierignore | 12 # Git submodules
|
| H A D | .eslintignore | 12 # Git submodules
|
| /expo/docs/pages/build-reference/ |
| H A D | git-submodules.mdx | 2 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 D | index.ts | 7 import Git from '../../../Git'; 89 return Git.discardFilesAsync(packageFiles);
|
| /expo/tools/src/ |
| H A D | TasksRunner.ts | 5 import Git from './Git'; 242 await Git.addFilesAsync(task.filesToStage); 245 await Git.discardFilesAsync(task.filesToStage);
|
| /expo/.github/actions/expo-git-decrypt/ |
| H A D | action.yml | 1 name: 'Expo Git Decrypt'
|
| /expo/tools/src/code-review/ |
| H A D | index.ts | 3 import Git from '../Git'; 67 await Git.fetchAsync({
|