摘要: Git 全局设置 git config --global user.name "张文彬" git config --global user.email "zhangwenbin@linrai.com" 创建一个新存储库 git clone http://139.9.133.148:8000/cp/c 阅读全文
posted @ 2020-07-09 16:11 binjia 阅读(722) 评论(0) 推荐(0) 编辑
摘要: -- 加文件加入待提交区 git add file -- 提交,并加上描述 git commit -m '描述 -- push到远程仓库 git push origin master - - clone分支 git clone http://***/***.git -- 拉取并合并 git pull 阅读全文
posted @ 2020-07-09 14:03 binjia 阅读(243) 评论(0) 推荐(0) 编辑
摘要: 格式:/usr/local/mysql/bin/mysqldump -hip -Pport -uuser -ppasswd --set-gtid-purged=off --database aa > aa.sql 注意:加入 --set-gtid-purged=off 避免导出GTID_EXECUT 阅读全文
posted @ 2020-07-09 13:58 binjia 阅读(116) 评论(0) 推荐(0) 编辑