Git 常用終端機教學
git 是一款分散式版本控制軟體,目前在業界上也是最廣泛使用的工具之一。
首先,我們先來安裝Git軟體
Step1.先到官網下載軟體
https://git-scm.com/
備註:基本上下載下來後,一直按下一步就可以了
Step2.安裝後,我們可以在windows工具列這邊看到git bash
Step3.點開後,我們輸入git--version確認一下版本是否安裝成功
若有安裝成功,則會跳出version 2.21.0 字樣(顯示目前版本狀況)
若安裝失敗,則會出現command not found 則是安裝失敗
推薦使用source tree/github page
小結論:
學習概念上:使用終端機
實務上:使用圖形介面軟體(GUI)
終端機使用(windows上是沒有終端機指令喔,所以都是使用macos 指令)
1.確認自己目前位置 pwd(print working directory)
2.建立目錄 mkdir(making dir)
3.切換目錄 cd(changing dir)
Tips:要加上/
4.建立檔案(touch)
5.查看檔案列表(ls -al)
6.刪除檔案(rm)
7.
刪除目錄(rm -r)
Tips:要加上/
8.複製(cp)
9.移動(mv)
前提:要將world.html搬到 images 資料夾中
Tips:要加上/
也可拿來更改檔名
常用終端機指令整理
windows |
macos/linux
|
說明
|
cd | cd | 切換目錄 |
cd | pwd | 取得目前所在的位置 |
dir | ls | 列出面目前的檔案列表 |
ls -al | 列出面目前的檔案列表細節 EX:時間 | |
mkdir/md | mkdir | 建立目錄 |
rmdir/rd | rm -r | 刪除目錄 |
無 | touch | 建立檔案 |
copy | cp | 複製檔案 |
move | mv | 移動檔案 |
del | rm | 刪除檔案 |
cls | clear | 清除畫面上的內容 |
留言
張貼留言