wtrubiks/Git-Tutorials: Git-Tutorials GIT基本使用教學
github.com · 5,047 words · saved by 1 readers
Git-Tutorials GIT基本使用教學📝
English Version 因為小弟覺得這東西蠻有趣的,所以就簡單寫個教學文,順便記錄一下 📝,希望能幫助想學的人 😄 如果教學有誤再請糾正 😅 基本使用指令以及安裝可參考小弟之前拍的影片 Youtube Tutorial - github基本教學 - 從無到有 影片教學包含如何產生 SSH key 如果步驟正確且沒出錯誤,可以在路徑下找到 .ssh資料夾,裡面有 id_rsa 以及 id_rsa.pub 兩個檔案, 這兩個就是 SSH Key, id_rsa是私鑰 ,不能洩露出去, id_rsa.pub是公鑰 ,可以很放心的告訴任何人。 安裝完 Git 之後,要做的第一件事情就是去設定自己的名字和信箱 git config --global user.name "twtrubiks" git config --global user.email "twtrubiks@gmail.com" 可以輸入以下來確認是否輸入成功 git config --global user.name git config --global user.email Git 設定資料查看,可執行以下指令 ( 文章末會有較詳細的教學 ): git config --list git init 指令 初始化 git git init 也可以指定資料夾 git…
saved by
related reading
- Git Guides - git pushgithub.com
- How do I change the URI (URL) for a remote Git repository? - Stack Overflowstackoverflow.com
- Useful git commands for SRE and DevOps engineersreliabilityengineering.substack.com
- Using Gitcs61bl.org
- Git - user-manual Documentationgit-scm.com
- GitHub - abhinav/git-spice: Manage stacked Git branchesgithub.com
- Getting Startedweb.mit.edu
- GitHub - jesseduffield/lazygit: simple terminal UI for git commandsgithub.com
- Git at any scalecursor.com
- GitHub · Change is constant. GitHub keeps you ahead.github.com
- How Git works: A complete guide to branches, merges, and collaborationdeveloper.ibm.com
- CLI Reference - git-spiceabhinav.github.io