git簡單使用方式

2021-10-08 04:23:37 字數 1328 閱讀 3669

如何在已有專案中新增git

首先在github或者碼雲建立乙個遠端倉庫

在專案目錄中,開啟git bash here

// 1. 初始化git

git init

// 2. 將專案中所有檔案新增進去

git add .

// 3. 新增遠端倉庫位址

git remote add origin [位址]

// 4. commit到本地倉庫

git commit -m "內容說明"

// 5. push到遠端倉庫

git push -u origin master

**同時上傳到github和碼雲

由於我們「強國」,github總是暴斃,那麼能不能在國內的碼雲,也上傳乙份**呢,答案當然是可以的!

使用多個遠端庫時,預設名稱是origin,如果有多個遠端庫,我們需要用不同的名稱來標識不同的遠端庫。

// 1. 首先刪除已關聯的名為origin的遠端庫:

git remote rm origin

// 2. 然後,先關聯github的遠端庫:

git remote add github [github的位址]

// 3.接著,再關聯碼雲的遠端庫:

git remote add gitee [gitee的位址]

// 注意:兩個倉庫的名字已經不是orgin了!

// 4. 如果要推送到github,使用命令,(此處省略,commit等操作):

git push github master

// 5. 如果要推送到碼雲,使用命令:

git push gitee master

// 6. 檢視遠端庫資訊,可以看到兩個遠端庫:

git remote -v

如何clone**倉庫的專案並且上傳

換了乙個電腦,怎麼把原來電腦上的專案同步過來呢?

// 1. 先將專案轉殖到新電腦

git clone url

// 2. 設定賬戶

git config --global user.name "}"

git config --global user.email "}"

// 接下來上傳,還是一樣的操作

// 1. 將專案中所有檔案新增進去

git add .

// 2. commit到本地倉庫

git commit -m "內容說明"

// 3. push到遠端倉庫

git push -u origin master

Git使用方式

git忽略檔案的配置 gitignore ignore this file target build classpath project settings filter databfile sln file mdb ldb sln class file com class dll exe o so ...

簡單使用Git

1.登陸伺服器 git 伺服器位址 git xx.yy.zz.com.cn ssh p steven git xx.yy.zz.com.cn 密碼認證後 伺服器控制台下 cd mnt disk1 moblin kernel linux 2.6.29.y.git git branch 列出branch...

簡單使用git

1.使用郵箱到github上註冊乙個賬號 2.然後建立乙個倉庫 4.先用控制台的配置一下使用者 git config global user.name 你的使用者名字 git config global user.email 你的郵箱 5.建立ssh key 滑鼠右鍵 git gui,幫助選單 sh...