everything技巧
1.空格代表:AND(且) 的意思
2.或:.jpg | .gif (找jpg或gif檔)
3.NOT:abc !xyz 找abc去除含xyz
使用萬用字元 "*" 及 "?"
4.j*e 找首字j 尾字e 的檔案
5.*.mp4 找.mp4檔
6.*.?? 找副檔名為兩個字符的文件
7.E:\info\*.pdf 找E:\info\路徑下的pdf檔
everything技巧
1.空格代表:AND(且) 的意思
2.或:.jpg | .gif (找jpg或gif檔)
3.NOT:abc !xyz 找abc去除含xyz
使用萬用字元 "*" 及 "?"
4.j*e 找首字j 尾字e 的檔案
5.*.mp4 找.mp4檔
6.*.?? 找副檔名為兩個字符的文件
7.E:\info\*.pdf 找E:\info\路徑下的pdf檔
快速建立 HackMD 架構式文件
要建立出一個帶有目錄的架構式 HackMD ,可以分為以下三個步驟:
https://w3c.hexschool.com/git/cfdbd310 參考網站
https://www.youtube.com/watch?v=Mx8G8aJyIiw
https://www.youtube.com/watch?v=cwOFAWaCJOs&t=128s
1.安裝 bit bash(上網查),可以建在D:\XXX
1-1.註冊github 1-2.sourcetree安裝 註冊Bitbuket bkplayxxxx
2.若在D:\MyCode 建立資料夾,按滑鼠右鍵\選擇\Open Git bash here
3.出現$ 打$git init 建立起一個git repository 關閉再執行一次
4.若在D:\MyCode\ex.txt 隨意建立,打$git status會告訴你系統未追踪ex.txt!
5.$git add ex.txt 加入追踪,打$git status該檔會變綠色
6.$git commit 類似存檔功能,存到github
第一要輸入mail 及user
$git config --global user.email "you@example.com"
$git config --global user.name "Your Name"
7.$git log
8.$git config --list 查看git hub建立的內容