File: eas-cli.md | Updated: 11/15/2025
Hide navigation
Search
Ctrl K
Home Guides EAS Reference Learn
Archive Expo Snack Discord and Forums Newsletter
Copy page
Learn how to link a branch to a channel and publish updates with EAS CLI.
Copy page
EAS Update works by linking branches to channels. Channels are specified at build time and exist inside a build's native code. Branches are an ordered list of updates, similar to a Git branch, which is an ordered list of commits. With EAS Update, we can link any channel to any branch, allowing us to make different updates available to different builds.

The diagram above visualizes this link. Here, we have the builds with the "production" channel linked to the branch named "version-1.0". When we're ready, we can adjust the channel–branch pointer. Imagine we have more fixes tested and ready on a branch named "version-2.0". We could update this link to make the "version-2.0" branch available to all builds with the "production" channel.

Inspecting the state of your project's updates
View all channels:
Terminal
Copy
- eas channel:list
View a specific channel:
Terminal
Copy
- eas channel:view [channel-name]
# Example
- eas channel:view production
Create a channel:
Terminal
Copy
- eas channel:create [channel-name]
# Example
- eas channel:create production
See all branches:
Terminal
Copy
- eas branch:list
See a specific branch and a list of its updates:
Terminal
Copy
- eas branch:view [branch-name]
# Example
- eas branch:view version-1.0
View a specific update:
Terminal
Copy
- eas update:view [update-group-id]
# Example
- eas update:view dbfd479f-d981-44ce-8774-f2fbcc386aa
Changing the state of your project's updates
Terminal
Copy
- eas update --branch [branch-name] --message "..."
# Example
- eas update --branch version-1.0 --message "Fixes typo"
If you're using Git, we can use the --auto flag to auto-fill the branch name and the message. This flag will use the current Git branch as the branch name and the latest Git commit message as the message.
Terminal
Copy
- eas update --auto
Terminal
Copy
- eas branch:delete [branch-name]
# Example
- eas branch:delete version-1.0
Renaming branches do not disconnect any channel–branch links. If you had a channel named "production" linked to a branch named "version-1.0", and then you renamed the branch named "version-1.0" to "version-1.0-new", the "production" channel would be linked to the now-renamed branch "version-1.0-new".
Terminal
Copy
- eas branch:rename --from [branch-name] --to [branch-name]
# Example
- eas branch:rename --from version-1.0 --to version-1.0-new
We can make a previous update immediately available to all users. This command takes the previous update and publishes it again so that it becomes the most current update on the branch. As your users re-open their apps, the apps will see the newly re-published update and will download it.
Republish is similar to a Git reversion, where the correct commit is placed on top of the Git history.
Terminal
- eas update:republish --group [update-group-id]
- eas update:republish --branch [branch-name]
# Example
- eas update:republish --group dbfd479f-d981-44ce-8774-f2fbcc386aa
- eas update:republish --branch version-1.0
If you don't know the exact update group ID, you can use the
--branchflag. This shows a list of the recent updates on the branch and allows you to select the update group to republish.