Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pulls For Issues 8, 10, 11 #13

Merged
merged 4 commits into from
Nov 5, 2012
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
also rsync non-git hidden files, like .htaccess
  • Loading branch information
paulie4 committed Nov 5, 2012
commit ce3066ff5c7deec8ae3a518e629f5f5e1695d0bd
2 changes: 1 addition & 1 deletion lib/divergence/cache_manager.rb
Original file line number Diff line number Diff line change
@@ -28,7 +28,7 @@ def add(branch, src_path)
end

def sync(branch, src_path)
`rsync -a --delete #{src_path}/* #{path(branch)}`
`rsync -a --delete --exclude .git --exclude .gitignore #{src_path}/ #{path(branch)}`
end

def path(branch)