iT邦幫忙

0

Git l

  • 分享至 

  • xImage
  •  

所謂的Git就是版本控制Github就是雲端的概念

Git flow
Github flow
可以搭配Git YouTube

Command Line

首先我們要先學基本的
https://ithelp.ithome.com.tw/upload/images/20210523/20130419bgwU8SwyXa.png


cd 切換目錄

通常會先輸入ls看有什麼folder然後在輸入cd /folderName

https://ithelp.ithome.com.tw/upload/images/20210523/201304190Ee7BJMPht.png


Git Configure

git config --global user.name "Dennis"
git config --global user.email "xxx@gmail.com"

git config --list  //通常會輸出許多資料,但注意使用者設定即可

Git initialize

資料夾初始化

git init

https://ithelp.ithome.com.tw/upload/images/20210523/20130419GwN4rcHiHf.png
若要確認是否正確,可到檔案總管切換到你的folder把顯示隱藏檔案打勾
https://ithelp.ithome.com.tw/upload/images/20210523/20130419NhvKmS7Q66.png


先打開 vscode
https://ithelp.ithome.com.tw/upload/images/20210523/20130419gEg3ruQm1F.png


首先我們在folder裡面創一個.html檔
https://ithelp.ithome.com.tw/upload/images/20210523/20130419ZdnXcjYX40.png


Git status

然後在cmd 輸入

git status

https://ithelp.ithome.com.tw/upload/images/20210523/201304197559SIkDnw.png

可以看到剛剛創的text.html 顯示在untracked


Git add

這個時候需要使用到add指令

git add <fileName>

https://ithelp.ithome.com.tw/upload/images/20210523/20130419dBCGxYyiFw.png
這邊就看到沒有untracked了 變更到changes to be commit

如果要一次track 所有檔案

git add --all

Git commit

這邊我們會提交一個紀錄給git,並且內容盡量簡潔有力,不要 "fix bug" 這樣會沒人看得懂,你也會被同事白眼

git commit -m "要輸入的內容"

https://ithelp.ithome.com.tw/upload/images/20210523/20130419uqNpQyxHv4.png

然後要保持好習慣commit過後要檢查是否成功

git log 

圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

1 則留言

0
akss5768
iT邦新手 5 級 ‧ 2021-05-24 11:26:57

VSCode其實有GitGraph,效率上比你純手打的CLI應該要快上不少

yanzhong iT邦新手 4 級 ‧ 2021-05-24 11:52:17 檢舉

謝謝推薦,剛剛有用了一下確實很方便,但我覺得command Line還是要先會比較好一點/images/emoticon/emoticon08.gif

我要留言

立即登入留言