Python入門 – 工具篇 – git入門|分佈式版本控制|GitHub工作流程|教學|廣東話|60fps



Python入門 – 工具篇 – git入門|分佈式版本控制|GitHub工作流程|教學|廣東話|60fps

Python入門 - 工具篇 - git入門|分佈式版本控制|GitHub工作流程|教學|廣東話|60fps

Patreon: https://www.patreon.com/kfsoft
更多內容已上傳到 patreon。

Introduction to Git
1. Git concepts and command
2. Branching
3. Remote repo
4. Installation

(Git icon – https://git-scm.com)

00:00 Introduction
00:49 Roadmap
01:57 Version Control System
03:34 Type of VCS
05:03 Git directory
08:28 Git status
12:45 Staging area
16:05 VSCode: Stage & commit
20:35 Work with local repo
22:10 Git add, remove & commit
27:44 Workflows: one developer, team & GitHub
34:14 Commit objects
37:28 Commit demo
46:32 Undo commit: Revert & Reset
49:20 Revert
52:16 Hard reset
55:29 Mixed reset
58:59 Soft reset
01:02:59 Amend commit
01:05:37 Restore files with hard reset
01:09:06 Git restore
01:12:19 Branch pointer
01:14:58 HEAD
01:16:24 Git switch branch
01:17:27 Merge
01:19:44 Branch demo
01:21:58 .gitignore file
01:24:46 Create branches
01:34:46 Merge branches demo
01:40:24 Remove branch
01:41:26 Checkout branch
01:43:51 Checkout commit & detached HEAD state
01:49:39 Stash demo
01:55:35 VSCode: stash
01:58:21 Remote branch & git clone
02:03:57 Git fetch, pull & push
02:05:52 Fork repository
02:08:16 Create branch for pull request
02:09:38 Git push to my own remote repo
02:12:07 Compare & pull request
02:14:55 Installation

Python入門:第1課 – PyCharm + Data Types https://youtu.be/s9toTBXQSPE
Python入門:第2課 – Python containers (1): List, Tuple https://youtu.be/7hm0zHgEGZ4
Python入門:第3課 – Python containers (2): Dictionary & Set https://youtu.be/7Jvfd6qFLzU
Python入門:第4課 – If-Else, Looping, Try-except https://youtu.be/sXdh5L5rcX0
Python入門:第5課 – Function + File https://youtu.be/rk8kU3no5No
Python入門:第6課 – Class and Object https://youtu.be/HPb0Lg3FQfM
Python入門:Project 1 – Tic-Tac-Toe 井字棋|過三關 https://youtu.be/ILNcq29fvII
Python入門:第7課 – URL, JSON, Sqlite https://youtu.be/93lOZTxJtrs
Python入門:第8課 – 用Flask進行Web開發 https://youtu.be/Z4CR3rwVkGc
Python入門:第9課 – Flask + DB ORM https://youtu.be/ZQoBdEH1zow
Python入門:第10課 – Flask補充1 https://youtu.be/AC23QWvFNWI
Python入門:第11課 – Flask補充2 https://youtu.be/-PkZ8sGhm-U
Python入門:Project 2 – Password generator 密碼生成器 https://youtu.be/5miejVDO9_w
Python入門:Apache 安裝Flask app – mod_wsgi https://youtu.be/E6dqWawzc14
Python入門:第12課 – GUI (Tkinter) + PyInstaller 打包EXE https://youtu.be/_-LKQvmG8Uc1
Python入門:第13課 – More loops – Iterable Vs Iterator https://youtu.be/xKPK6CRnBT4
Python入門:第14課 – More loops – Generator https://youtu.be/sl3seUetRkA

Python初級:第15課 – Web Scraping 靜態網頁抓取 https://youtu.be/_LRfuctPLds
Python初級:第16課 – Web Scraping 動態網頁抓取 https://youtu.be/lXwgSweHf5Q
Python初級:第17課 – Pygame貪食蛇遊戲 https://youtu.be/kaDEcF5LTWU
Python初級:第18課 – if __name__ == ‘__main__’ 入口點 https://youtu.be/ihDNLQOQrSk
Python初級:第19課 – Type hints 類型提示 https://youtu.be/Z_AF3K-BMBs

Database初級:SQL入門 https://youtu.be/OtM74u3Fbw0
Database初級:JOIN連接 https://youtu.be/tpDvgr7qHsw

Python初級:openpyxl – 讀寫 MS Excel 文件 https://youtu.be/tjcJV2fur5g
Python初級:python-docx – 讀寫 MS Word 文件 https://youtu.be/PEKWb5R3sSU

Python入門 – 數據科學 – Jupyter Lab & Notebook 安裝+入門教程 https://youtu.be/niWD8kxgpH0
Python入門 – 數據科學 – Anaconda + PyCharm 安裝 https://youtu.be/H4ihRvtdY7M
Python初級 – 數據科學 – Numpy入門 https://youtu.be/t7ygnafk760
Python初級 – 數據科學 – Pandas入門 https://youtu.be/ZYjhM7J9eFQ
Python初級 – 數據科學 – Pandas入門 (第二版 更新column部分) https://youtu.be/w76oa7YzvkY
Python初級 – 數據科學 – Pandas時間 + 圖表 https://youtu.be/jrd8shHEVFQ
Python初級 – 數據科學 – Pandas類別 + 樣式 https://youtu.be/4ntwbAWnKbg

Python初級 – 機器學習 – Scikit-learn 入門 https://youtu.be/3m8Bb01uNNE
Python初級 – 機器學習 – Scikit-learn – Regression 回歸 https://youtu.be/QyYZT8o-f3U
Python初級 – 機器學習 – Scikit-learn – Classification 分類 https://youtu.be/JKn0OoHSoRo

Python初級 – 識別篇 – 光學文字辨識OCR + Google翻譯 https://youtu.be/UT7A-Y_FXlg
Python初級 – 識別篇 – TTS + 語音辨識 https://youtu.be/dGY9en_z5bQ

Python入門 – 技巧篇 – Debug 偵錯 / 除錯 / 調試 https://youtu.be/1uGdbaVGRBE
Python入門 – 工具篇 – Visual Studio Code入門 https://youtu.be/Dy7sVPN46hs
Python入門 – 工具篇 – PyCharm 10個必學功能 https://youtu.be/A8La270tpHI
Python入門 – 工具篇 – Virtual Environment 虛擬環境 https://youtu.be/Xu2GbJbo_WE
Python入門 – 工具篇 – PowerShell 定制 https://youtu.be/V2UCvB3pXxs
Python入門 – 工具篇 – git入門 https://youtu.be/E3tBDPBB2lU

https://kfsoft.info

Comments are closed.