Git筆記
添加文件到
.gitignore
中命令:
echo '.idea/*' >> .gitignore
從
tracked file
里面移除文件夾和文件命令:
git rm -r --cached .idea/
git rm --cached .idea/wordspace.xml
PostgreSql 安裝+設(shè)置
下載 PostgreSQL 根據(jù)步驟進(jìn)行安裝
修改Linux用戶的postgres的密碼
輸入命令如下:sudo passwd postgres
-
修改數(shù)據(jù)庫超級用戶postgres的密碼
- 切換到Linux 下postgres用戶:
sudo su postgres
- 登錄 postgres 數(shù)據(jù)庫:
psql postgres
,會看到如下信息:
psql (9.5.3) Type "help" for help
并出現(xiàn)postgres的命令提示符號:
postgres=#
- 輸入如下命令:
ALERT USER postgres with PASSWORD 'your password'
; - 輸入
exit;
返回 Linux 的命令行
- 切換到Linux 下postgres用戶: