Git GITHUB簡單使用

2021-09-01 05:48:00 字數 964 閱讀 9865

一、概念

git本地倉庫 - 別人的本地倉庫 - 通過遠端倉庫實現**通訊更新

二、遠端端(**託管**)

1.註冊github賬號

2.建立遠端倉庫 new repository 輸入倉庫名稱,生成倉庫鏈結 ***/my***.git

三、本地倉庫建立

1.安裝git msysgit.github.io 配置到系統路徑

2.配置使用者名稱、密碼

git config --global user.name "name"

git config --global user.email "[email protected]"

在c:\users\administrator(或者當前windows的使用者)的.gitconfig中檢視配置

7.長期操作

提交(本地-->遠端)

git add .

git commit -m "注釋"

git push origin master 後期的提交不要 -u

更新(遠端-->本地)

git pull

六、egit配置

1.preference --> team ->git ->設定clone倉庫 default repository floder預設轉殖的專案存放位址

2.檢視configuration(預設讀取c:\users\administrator(或者當前windows的使用者)\.gitconfig)是否正確

3.檢查ssh2配置,general --> network connections --> ssh2

八、合作開發

1.在專案codes一排最後 settings - collaborators 新增合作者的github的id

2.合作者登入賬號後,輸入邀請鏈結,加入合作開發

Git GitHub簡單使用

time 2019 2 26 theme git使用說明 2.安裝好git 之後,兩個快捷方式 1.開啟git bash 進入上面檔案目錄下 或者在檔案資源器中進入該目錄,然後右鍵 git bash here 2.輸入 git config global user.name github使用者名稱 ...

GIT GitHub簡單上手

1 關於git和github git 開源的分布式版本控制系統,可以有效 高速地處理從很小到非常大的專案版本管理 github 面向開源及私有軟體專案的託管平台,因為只支援git 作為唯一的版本庫格式進行託管,故名github 2 git學習使用 git config global user.nam...

Git Github使用教程

一 配置github 1.註冊github賬戶renle177 2.新建 庫linux test 以上操作省略.二 本地操作配置 linux環境 1.安裝git及配置環境 yum y install git git config global user.name renle177 git confi...