dorky 4.1.1 → 4.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +2 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -191,6 +191,7 @@ This command:
191
191
  - Updates modified files (based on hash comparison)
192
192
  - Removes files from remote storage that were unstaged using `dorky --rm`
193
193
  - Skips unchanged files
194
+ - Skips push entirely if the staged state already matches the latest commit
194
195
 
195
196
  ### Pull Files from Storage (`-pl`)
196
197
 
@@ -220,7 +221,7 @@ Prints all past push commits in reverse chronological order, showing the commit
220
221
  dorky --checkout <commit-id>
221
222
  ```
222
223
 
223
- Downloads the files as they were at the given commit from remote storage and restores the local staged/uploaded state to match. The commit ID can be found with `--log`. Prefix matching is supported (e.g. `dorky --checkout a1b2` if the full ID is `a1b2c3d4`).
224
+ Downloads the files as they were at the given commit from remote storage and stages them locally. Run `dorky --push` afterward to publish the restored state as a new commit. The commit ID can be found with `--log`. Prefix matching is supported (e.g. `dorky --checkout a1b2` if the full ID is `a1b2c3d4`).
224
225
 
225
226
  ### Destroy Project (`-d`)
226
227
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dorky",
3
- "version": "4.1.1",
3
+ "version": "4.1.2",
4
4
  "description": "DevOps Records Keeper.",
5
5
  "bin": {
6
6
  "dorky": "bin/index.js",