git hub在windows上的使用
每次使用都需要查詢,太麻煩了。
轉過來自己用!
git hub在windows上的使用
一、
首先安裝客戶端 Git for Windows.按提示預設安裝後,進入git bash(桌面上)
首先檢查下有沒存在的ssh
cd ~/.ssh
如果沒有(提示不存在)則輸入
$ ssh-keygen -t rsa -C “your_email@youremail.com”
注意大小寫,後面是你註冊的郵箱
之後可以輸入密碼(不輸入也可以)
這樣就生成了一個ssh key,在你的使用者/administrator/.ssh目錄下有一個 id_rsa.pub,開啟,全部複製
二、
進入你github的主頁 點選 “Account Settings” > “SSH Public Keys” >“Add another public key”
貼上進key中,點選add key,ok,之後在bash裡輸入 ssh -T git@github.com 按照提示輸入yes,ok
之後就是確認你的資訊
$ git config --global user.name "<em>Firstname Lastname</em>"
$ git config --global user.email "<em>your_email@youremail.com</em>"
按照註冊的填就可以。之後進入主頁,點選<em> “Account Settings”</em> > <em>“Account Admin.”</em></span>
會出現一個API token,把那個號記下來。在bash中輸入
$ git config --global github.user <em>username</em>
$ git config --global github.token API號<em></em></span>
這樣就就建立完成了。
三、
建立專案的時候,在首頁選擇 <a href="https://github.com/repositories/new">New Repository</a>,輸入專案名,專案介紹。我這裡用front end learn作為專案名,建立好了專案會彈出一個提示,按照提示操作即可。
之後進入git都要在bash輸入
git config --global user.name "你的名字"
git config --global user.email 你的郵箱
按照順序輸入
四、
mkdir front-end-learn建立工作目錄,可以用別的軟體作為專案目錄
cd front-end-learn
git init成為管理者
touch README新建一個readme檔案(用別的軟體新建也可以)
git add README把這個新建的檔案增加到git本地列表中
git commit -m 'first commit'輸入這個檔案的註釋
git remote add origin git@github.com:你的使用者名稱/front-end-learn.git(建立本地列表一個)
git push -u origin master(上傳)</span>
之後每次新建一個都要
git add 檔名 把這個新建的檔案增加到git本地列表中
git commit -m 'first commit'輸入這個檔案的註釋
git push -u origin master(上傳)</span>
五、
退出GITcd existing_git_repo
git remote add origin git@github.com:你的使用者名稱/front-end-learn.git
git push -u origin master</span>
基本操作跟linux一樣,用過linux的可以很快上手。
原帖地址: http://ju.outofmemory.cn/entry/72998
--------------------
若有問題,請隨時聯絡!
非常感謝!!
相關文章
- git安裝及配置教程 windows windows上git的安裝和使用GitWindows
- 使用Travis在Docker Hub上管理開源Docker映象Docker
- git在windows命令列下使用GitWindows命令列
- 在 Windows 上使用 FFmpegWindows
- 在 Windows 上使用 scp 命令Windows
- Git在windows下上傳檔案至github流程WindowsGithub
- 在 Hub 上使用 Presidio 進行自動 PII 檢測實驗
- Windows 環境中使用 Git 上傳專案到 GitHubWindowsGithub
- 如何給Docker hub使用者上傳頭像Docker
- 在windows平臺上如何做到git多ssh-key相容WindowsGit
- 在 Windows 上使用 IIS 部署 PHP 專案WindowsPHP
- 在CentOS上安裝GitCentOSGit
- 在 Windows Git Bash 中安裝 bash-git-promptWindowsGit
- 在 Windows Git Bash 中安裝 bash-git-proWindowsGit
- 在Visual Studio 中使用git——分支管理-上(八)Git
- 在windows上,Vim 與 SQL*Plus 結合使用WindowsSQL
- 使用指令上傳gitGit
- Windows+.NetCore+git+IIS在Jenkins上的自動化部署入門WindowsNetCoreGitJenkins
- 如何在Windows上使用Git建立一個可執行指令碼?WindowsGit指令碼
- .Net在Windows上使用Jenkins做CI/CD的那些事WindowsJenkins
- 在伺服器上使用 smart http 搭建 Git 伺服器伺服器HTTPGit
- 在Visual Studio 中使用git——檔案管理-上(四)Git
- 使用 Winget 命令在 Windows 上安裝軟體Windows
- 使用Git上傳專案Git
- selenium 中上傳檔案在 hub 分發機制中,node 上瀏覽器中上傳的是 hub 機上的檔案,這個是怎麼實現的?瀏覽器
- git hub 無法訪問 訪問速度慢Git
- GIT SUBMODULE在Android中的使用GitAndroid
- 在CentOS上搭建git伺服器CentOSGit伺服器
- Vagrant 在 Windows 下的使用Windows
- 在Windows上安裝MavenWindowsMaven
- 在windows上安裝numpyWindows
- mysql 在windows上安裝MySqlWindows
- 使用WSL2在Windows 11上安裝HadoopWindowsHadoop
- 在 Windows 上安裝和使用 GNUstep 和 Objective-CWindowsObject
- 微軟推出了全新Windows10應用程式Windows Defender Hub微軟Windows
- 在windows上打Oracle的CPU補丁WindowsOracle
- random_device在windows上的實現randomdevWindows
- 在windows7上使用python 3.9及更高版本的辦法WindowsPython