摘要:
# psql 连接数据库 psql -U auth_db -h 127.0.0.1 -p 5432 ## 备份数据库 ### 用 postgres账号 备份 zzb_db数据库到 zzb_db.sql文件中 pg_dump -h 127.0.0.1 -p 5432 -U postgres -f zz 阅读全文
摘要:
直接上操作 终端运行 1、将以下内容写入到 golang.sh文件 2、chmod+x golang.sh 3、将文件 golang.sh拷贝到 /etc/profile.d/目录下,重启电脑生效 #! /bin/sh # 设置环境变量允许绕过所选模块的代理 #for golang export G 阅读全文
摘要:
1、git设置 git config --global credential.helper store 操作完成后,文件保持在 文件位置在:C:\Users\ycg.gitconfig 2、终端 vim ~/.git-credentials 保存以下内容 https://用户名:密码@域名 例如 h 阅读全文