Git笔记
-
添加文件到
.gitignore
中命令:
echo '.idea/*' >> .gitignore
-
从
tracked file
里面移除文件夹和文件命令:
git rm -r --cached .idea/
git rm --cached .idea/wordspace.xml
PostgreSql 安装+设置
-
下载 PostgreSQL 根据步骤进行安装
-
修改Linux用户的postgres的密码
输入命令如下:sudo passwd postgres
-
修改数据库超级用户postgres的密码
- 切换到Linux 下postgres用户:
sudo su postgres
- 登录 postgres 数据库:
psql postgres
,会看到如下信息:
psql (9.5.3) Type "help" for help
并出现postgres的命令提示符号:
postgres=#
- 输入如下命令:
ALERT USER postgres with PASSWORD 'your password'
; - 输入
exit;
返回 Linux 的命令行
- 切换到Linux 下postgres用户:
网友评论