windows批处理文件(.bat)复制文件夹 如何取消提示xxx是文件名还是目录名

xcopy /s /e "c:3" "D:\"
 
如上例句加上 /s 参数即可
以下还给您提供了 xcopy 命令的其他参数:
 
  /A           仅复制有存档属性bai集的文件,但不更改属性。
 
  /M           仅复制有存档属性集的文件,并关闭存档属性。
 
  /D:m-d-y     复制在指定日期或指定日期以后更改的文件。
 
               如果没有提供日期,只复制那些源时间比目标时间新的文件。
  /P           创建每个目标文件之前提示您。
 
  /S           复制目录和子目录,不包括空目录。
 
  /E           复制目录和子目录,包括空目录。与 /S /E 相同。可以用来修改 /T。
 
  /V           验证每个新文件的大小。
 
  /W           提示您在复制前按键。
 
  /C           即使有错误,也继续复制。
 
  /I           如果目标不存在,且要复制多个文件,则假定目标必须是目录。
 
  /Q           复制时不显示文件名。
 
  /F           复制时显示完整的源文件名和目标文件名。
 
  /L           显示要复制的文件。
 
  /G           允许将加密文件复制到不支持加密的目标。
 
  /H           也复制隐藏文件和系统文件。
 
  /R           覆盖只读文件。
 
  /T           创建目录结构,但不复制文件。不包括空目录或子目录。/T /E 包括
 
               空目录和子目录。
 
  /U           只复制已经存在于目标中的文件。
 
  /K           复制属性。一般的 Xcopy 会重设只读属性。
 
  /N           用生成的短名称复制。
 
  /O           复制文件所有权和 ACL 信息。
 
  /X           复制文件审核设置(隐含 /O)。
 
  /Y           取消提示以确认要覆盖现有目标文件。
 
  /-Y          要提示以确认要覆盖现有目标文件。
 
  /Z           在可重新启动模式下复制网络文件。
 
  /B           复制符号链接本身与链接目标相对。
 
  /J           复制时不使用缓冲的 I/O。推荐复制大文件时使用。

git merge和git merge –no-ff的区别

在很多介绍GitFlow工作流的文章里面,都会推荐在合并分支的时候加上--no-ff参数, 而我们在合并的时候,有时git也会提示 使用了fast-forward,这里我将介绍一下merge的三种状态及 git merge 和 git merge --no-ff的区别Git merge的时候,有几种合并方式可以选择

 --ff
    When the merge resolves as a fast-forward, only update the branch pointer, without creating a merge commit. This is the default behavior.
 --no-ff
    Create a merge commit even when the merge resolves as a fast-forward. This is the default behaviour when merging an annotated (and possibly signed) tag.
 --squash
 --no-squash
    Produce the working tree and index state as if a real merge happened (except for the merge information), but do not actually make a commit, move the HEAD, or record $GIT_DIR/MERGE_HEAD (to cause the next git commit command to create a merge commit). This allows you to create a single commit on top of the current branch whose effect is the same as merging another branch (or more in case of an octopus).
    With --no-squash perform the merge and commit the result. This option can be used to override --squash.
继续阅读git merge和git merge –no-ff的区别

RDS的xb文件恢复到本地mysql5.6版本数据库

安装qpress的软件

链接:https://pan.baidu.com/s/1njNRz3qSc0pYYSjbEzSI_Q      提取码:1nxe

yum -y localinstall  percona-xtrabackup-2.3.5-1.el7.x86_64.rpm
yum install http://www.percona.com/downloads/percona-release/redhat/0.1-4/percona-release-0.1-4.noarch.rpm
 
 
[root@haha data]# vim /etc/yum.repos.d/percona-release.repo
[percona-release-$basearch]
name = Percona-Release YUM repository - $basearch
baseurl = http://repo.percona.com/release/$releasever/RPMS/$basearch
enabled = 1
gpgcheck = 0   这里写成不检查
gpgkey = file:///etc/pki/rpm-gpg/RPM-GPG-KEY-Percona
 
 
 
[root@haha data]# yum -y install qpress-11-1.el7.x86_64
继续阅读RDS的xb文件恢复到本地mysql5.6版本数据库