Menu
NestNestDocsNest
GitHubTwitter
๐ŸŒœ
๐ŸŒž
NestNestDocs
  • Nest
  • GitHub
  • Twitter
  • Nest.land
    • Introduction
  • Nest CLI
    • Getting started
    • Commands
      • help
      • init
      • setup
      • login
      • logout
      • switch
      • publish
      • sync
      • config
        • pull
        • push
        • diff
        • status
      • upgrade
    • Configuration files
      • module.json
      • ignore
    • FAQ
    • CI/CD
  • Eggs
    • Introduction
    • Installation
    • Linking your API key
    • Configuration
    • Publishing a module
    • Dependency tree
    • Updating all of your dependencies
    • Installing a script
    • Upgrade eggs
  • API
    • Introduction
    • Mutations
    • Queries

nest sync

Synchronize remote and local configuration. This command is an abstraction of the pull and push commands.

nest sync
info

Synchronization logic:

if (local config older than remote config) {
pull config & merge config;
if (conflicts) {
return;
}
}
push config;

Examples#

nest sync
Edit this page
Previous
ยซ nest publish
Next
nest config pull ยป
  • Examples
Sponsored by Vercel