紀錄一下比對 local branch 及 remote branch 的語法 # 指令 git diff <local-branch> <remote>/<remote-branch> # 如果要看這次的修改 <commit> 會對遠端分支造成什麼變動,可以改變 branch 的位置 git diff <remote>/<remote-branch> <local-branch> # 更簡潔的版本 git diff origin git diff @{upstream}
Linux 指令 ls 以時間排序列出檔案,上網查了一下文章,這邊做個筆記記錄一下。 # 列出檔案,如果要以修改檔案的時間排序,只要加入參數 -t 即可 # 預設都會由最
PHP <?= 標籤 在寫 PHP 的時候,有時會看到 <?= 的寫法,這個寫法代表什麼意思呢? <?= '阿彌陀佛' ?> // output 阿彌陀佛 <?php echo '阿彌陀佛'
Nginx 指令 紀錄一下 Nginx 幾個簡單常用指令 # 檢查 nginx 狀態 service nginx status --- # 啟動 nginx /etc/init.d/nginx start service nginx start systemctl start nginx # For mac OS X sudo nginx --- # 關閉 nginx /etc/init.d/nginx stop service nginx stop systemctl stop nginx # For mac OS X sudo nginx -s stop (快速
Hugo 安裝 Disqus 留言板 步驟 1 首先如果沒有帳號的話,需要去他官方網站註冊帳號。 官方網站 註冊頁面 步驟 2 註冊好且登入帳號後,並不意味著就可以開始使用留言板
Git log 方法 常常過了一段時間之後,再回去看前面的代碼,都會忘記自己當初為什麼會寫這些東西,亦或是要查看別人寫的這段代碼有什麼用意,這時候就會用到
Git branch 重新命名 要重新命名 branch 非常的簡單。 # 重新命名現在的 branch git branch -m <new-branch-name> # 指定 branch 重新命名 git branch -m <old-branch-name> <new-branch-name> # 更新 local branch 至 remote git push origin -u <new-branch-name> # 刪除 remote 舊的 branch 方法 1. git push origin :<old-branch-name>
紀錄一下 Hugo 的一些常用指令 // 查看部落格的基本資訊 >> hugo // 查看網站設定資訊 >> hugo config // 建立新的文章 >> hugo new posts/<文章名稱>.md // 建