Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Sign up for free
Menu
Search
Features
All features
Private URLs
Password Protection
Custom URLS
Scheduled publishing
Remove Branding
Restrict embedding
Deck Collections
Notes
Features
All features
Private URLs
Password Protection
Custom URLS
Scheduled publishing
Remove Branding
Restrict embedding
Deck Collections
Notes
Explore
Featured decks
Featured speakers
Programming
Technology
Storyboards
Explore
Featured decks
Featured speakers
Programming
Technology
Storyboards
Pricing
Search
Sign in
Sign up for free
任務導向的 Git/GitHub 介紹
Search
[email protected]
October 23, 2019
Programming
350
1
Share
Embed
Copy iframe code
Copy JS code
Copy link
Start on current slide
任務導向的 Git/GitHub 介紹
[email protected]
October 23, 2019
More Decks by
[email protected]
See All by
[email protected]
【深度學習】08 強化學習
yenlung
0
470
Contrastive Self-Supervised Learning
yenlung
0
550
【深度學習】07 生成模式和 GAN
yenlung
0
500
【深度學習】06 RNN 實務與 Transformers
yenlung
0
420
【深度學習】05 有記憶的神經網路 RNN
yenlung
0
340
【深度學習】04 圖形辨識的天王 CNN
yenlung
0
390
【深度學習】03 神經網路是怎麼學的
yenlung
0
300
【深度學習】02 AI 就是問個好問題
yenlung
0
330
咖啡沖煮簡介
yenlung
0
1.5k
Other Decks in Programming
See All in Programming
Swift愛好会と私(ウホーイ) / Swift Fan Club and Uhooi
uhooi
0
150
Swift愛好会100回記念 第1回を振り返る
jollyjoester
0
120
20260914 AIエージェント時代のPlatform Engineering LLM基盤とプロダクトの責務境界線
kanfab1
6
1.8k
Claude Codeを組織的に動かして月400PRを実現した話
happy_ryo
0
270
Intent as Code
shoppingjaws
6
980
アクセシビリティから考える情報設計
high_g_engineer
0
370
Go × SIMDで高速化するベクトル検索 ~ルーフラインモデルでSIMDが効く境界を探れ! ~
po3rin
1
510
個人開発基盤をまるごとCloudflareに引っ越して爆速で総合的体験を向上させた話
tinykitten
0
180
選挙速報を多くのユーザーへ 届ける Live Activities 設計
hamayokokuririn
0
140
ゲームコントローラやキーボードのファームウェアをSwiftで書く
kishikawakatsumi
1
230
kubernetes コンポーネント開発入門 / 新卒N年目の勉強会&交流会!〜〇〇への誘い〜 #n_study
mazrean
0
230
Omarchy Tokyo やると聞いて UMPC 買ってセットアップしてきた
mtsmfm
0
140
Featured
See All Featured
The B2B funnel & how to create a winning content strategy
katarinadahlin
PRO
1
520
DBのスキルで生き残る技術 - AI時代におけるテーブル設計の勘所
soudai
PRO
68
57k
Exploring the relationship between traditional SERPs and Gen AI search
raygrieselhuber
PRO
2
4.3k
Building the Perfect Custom Keyboard
takai
2
870
Context Engineering - Making Every Token Count
addyosmani
9
1.1k
Data-driven link building: lessons from a $708K investment (BrightonSEO talk)
szymonslowik
1
1.3k
Docker and Python
trallard
47
4.2k
"I'm Feeling Lucky" - Building Great Search Experiences for Today's Users (#IAC19)
danielanewman
230
23k
Claude Code のすすめ
schroneko
67
230k
Principles of Awesome APIs and How to Build Them.
keavy
128
18k
I Don’t Have Time: Getting Over the Fear to Launch Your Podcast
jcasabona
35
2.8k
My Coaching Mixtape
mlcsv
0
310
Transcript
Git/GitHub 介紹 任務導向的
我們基本上在終端機下指令, 對 Windows 使用者來說, 在安排好 Git 之後, 就自動會有個叫 Git Bash
的 終端機應用程式! https://git-scm.com/downloads
任務 1 GitHub 當我雲端展示空間
我寫了好棒的程式, 大家 不知道真是太可惜了!
我的電腦裡有個資料夾, 裡面 有很多我的程式。想要放到 GitHub, 之後還會不斷更新。 MyWork
https://github.com/ 申請免費帳號。 GitHub
MyWork MyWork GitHub 上一個 Repo 本機端 同步
1 建一個新的 Repo 在 GitHub 建一個新的 Repo, 名稱用英文, 不一定 要和原來本機端資料夾名
稱相同。
2 Git 初始設定 其實可愛的 GitHub 會教你, 在本機資料夾下做。 > git init
檔案 要 Git 管 Git 正式接手 add commit Git 接管三部曲
3 執行三部曲 > git add . > git commit -m
“這次更更新的重點” 基本上我們每次有更新都做一樣的動作就好。
4 第一次送到 GitHub > git remote add origin https//….git >
git push -u origin master 基本上就是告訴本機端的 Git, 相對雲端的 Repo 位罝在哪裡, 這只有第一次!
5 以後在 commit 後的更新 以後都是這樣... > git push
6 Git 端有別人更新 有共同維護者, 或是你在不同電腦上都做... > git pull
MyWork MyWork GitHub 上一個 Repo 本機端 push pull 這是 fetch
+ merge 建好了以後更新很容易, 就是不斷的 pull 和 push...
任務 2 讓人家看我 GitHub 上的 Jupyter Notebook 檔
https://nbviewer.jupyter.org/ 打入我的 GitHub ID…
專屬 GitHub 上 Jupyter Notebook 展示區!
任務 3 我只是想維持別人 GitHub Repo 最新版
1 Clone 一個 GitHub Repo 網址在 GitHub 的 Repo 上
Clone 的地方可 以找到。 > git clone https://.. 我就愛改名
2 就 pull 更新! > git pull
3 我不過要 copy 一個檔案... 使用 curl 抓單一檔案, 記得要找到 raw 版
的網址! > curl https://raw... -o 我就愛改名
任務 4 更炫的是 fork 一個專案
Fork 我的 GitHub 上也 會有個屬於我的 Repo!!
在 GitHub 上看到喜歡的專 案, fork 後你也有一份! pull - push 自己電腦也有一份的話,
就可以用 來管理!
那... 原來的 repo 更新的話呢? 尤其是像我們上課每週更新...
origin 如果你是用前面介紹開 GitHub Reop 的方 法, 你本機應該設好了 指向自己 fork 的
repo upstream 現在我們要再設個: 指向原始的 repo
> remote add upstream https://原始的repo.git 在終端機中, 進入本機的資料夾下...
> git pull upstream 然後就可以定期 pull, 只是從 upstream 來