You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+15-14
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@
3
3
# Laravel Sync
4
4
This package provides a git-like artisan command to easily sync files and folders between environments. This is super useful for assets, documents, and any other files that are untracked in your git repository.
5
5
6
-
Laravel Sync is a no-brainer and will soon become best friends with your deploy script. The days are over when you had to manually keep track of files and folders between your environments. Do yourself a favor and give it a try!
6
+
Laravel Sync is a no-brainer and the perfect companion for your deploy script. The days are over when you had to manually keep track of files and folders between your environments. Do yourself a favor and give it a try!
7
7
8
8
## Requirements
9
9
-`rsync` on both your source and destination machine
@@ -78,11 +78,7 @@ return [
78
78
*/
79
79
80
80
'options' => [
81
-
// '--archive',
82
-
// '--itemize-changes',
83
-
// '--verbose',
84
-
// '--human-readable',
85
-
// '--progress'
81
+
'--archive',
86
82
],
87
83
88
84
];
@@ -92,15 +88,15 @@ return [
92
88
To use this package, you have to define at least one remote and recipe.
93
89
94
90
### Remotes
95
-
Each remote consists of a a `user`, a `host` and a `root`. Optionally, you may also define the SSH `port` and define if the remote should be`read_only`.
91
+
Each remote consists of a `user`, `host`, and `root`. Optionally, you may also define the SSH `port` and make a remote `read_only`.
0 commit comments