2
如何使用rsync备份没有git子目录的目录
我想复制c除子目录以外的所有子目录的./git目录。我这样做rsync: echo "copy c and sh files " rsync -a --include='*.c' --include='*.sh' --include='*/' --exclude='*' ~/c/ ~/Dropbox/Public/c # remove .git directory = do not send it to dropbox. Thx to Tomasz Sowa rm -rf ~/Dropbox/Public/c/.git 我可以做得更好吗?