Lines Matching refs:branch

4 description: Learn how to use link a branch to a channel and publish updates with EAS CLI.
10 … updates, similar to a Git branch, which is an ordered list of commits. With EAS Update, we can li…
13 alt={`Channel "production" linked to branch "version-1.0"`}
14 src="/static/images/eas-update/channel-branch-link.png"
17branch named "version-1.0". When we're ready, we can adjust the channel–branch pointer. Imagine we…
20 alt={`Channel "production" linked to branch "version-2.0"`}
21 src="/static/images/eas-update/channel-branch-link-2.png"
50 <Terminal cmd={['$ eas branch:list']} />
52 See a specific branch and a list of its updates:
55 cmd={['$ eas branch:view [branch-name]', '', '', '# Example', '$ eas branch:view version-1.0']}
56 cmdCopy="eas branch:view [branch-name]"
79 '$ eas update --branch [branch-name] --message "..."',
82 '$ eas update --branch version-1.0 --message "Fixes typo"',
84 cmdCopy="eas update --branch [branch-name] --message"
87 …he `--auto` flag to auto-fill the branch name and the message. This flag will use the current Git
91 ### Delete a branch
94 cmd={['$ eas branch:delete [branch-name]', '', '# Example', '$ eas branch:delete version-1.0']}
95 cmdCopy="eas branch:delete [branch-name]"
98 ### Rename a branch
100branch links. If you had a channel named "production" linked to a branch named "version-1.0", and …
104 '$ eas branch:rename --from [branch-name] --to [branch-name]',
107 '$ eas branch:rename --from version-1.0 --to version-1.0-new',
109 cmdCopy="eas branch:rename --from [branch-name] --to [branch-name]"
112 ### Republish a previous update within a branch
114 …and publishes it again so that it becomes the most current update on the branch. As your users re-…
121 '$ eas update:republish --branch [branch-name]',
125 '$ eas update:republish --branch version-1.0',
129 … exact update group ID, you can use the `--branch` flag. This shows a list of the recent updates o…