1.在windows上安裝git
2.你的名字和email位址
1.giithup刪除遠端庫
2.giithup遠端庫關聯本地
3.giithup建立與合併分支
3.本地版本庫
4.op
op1新增+提交
檢視:lanczh/works/blob/master/web/index.html
op2執行git status命令看看結果
遠端倉庫
我們根據github的提示,在本地的learngit倉庫下執行命令
1.方法一
lanczh/works.git
本地版本庫
媽媽再也不用擔心我的硬碟了
codereposition
f:\codereposition
ssh -t [email protected]
git clone lanczh/works.git
2.方法二
將本地的已有專案關聯到github上的新的專案上
f:\codereposition下執行
git remote add origin lanczh/works.git
我們建立dev分支,然後切換到dev分支
git checkout -b branch0822 //相當於以下兩條命令:git branch dev/ git checkout dev
然後,用git branch 命令檢視當前分支:
git 衝突
lanczh/works/blob/master/pos/index.html
Git 本地檔案上傳GitHub遠端倉庫
1 新建遠端倉庫 登入github選擇新建倉庫,跳轉頁面後填寫遠端倉庫名稱 2 在本地滑鼠右鍵選擇git bash here進入下面頁面執行git clone 遠端倉庫位址 命令 3 執行上個步驟後會在本地多出乙個資料夾 4 接下來把需要上傳的檔案複製到該資料夾下然後cd monitor 5 接下來...
Github上傳本地檔案到遠端倉庫
首先我這裡用的是window系統通過gitbash對github的一些檔案上傳 首先在桌面上建立乙個空的資料夾 然後開啟gitbash進入到資料夾中 在git上建立乙個倉庫,然後複製git位址 在gitbash中 執行 git clone 後面加上剛才複製的位址。之後就會發現桌面的空資料夾內多了乙個...
Git遠端倉庫 Github
git remote add shortname url 由於本地git倉庫與github倉庫之間的傳輸是通過ssh加密的,所以我們需要先配置驗證資訊。ssh keygen t rsa c youremail email.com 郵箱為自己在github上註冊的郵箱之後會要求確認路徑和輸入密碼,使用...