linux安裝git及使用

2022-09-18 12:51:10 字數 1345 閱讀 3432

sudo apt install git

git config --global user.name "git的使用者名稱"

git config --global user.email "git的郵箱"

ssh-keygen -t rsa -c "git的郵箱"

cat /root/.ssh/id_rsa.pub  #根據實際目錄
複製金鑰,注意別複製郵箱

開啟settings

這就表示成功了

接下來可以上傳**到git了

首先在github新建乙個遠端倉庫

git init

git remote add origin [email protected]:******x.git

#add指定檔案

git add test.txt

#add全部檔案

git add .

git commit -m "提交資訊"

git push -u origin master
--如果正常可以提交檔案,不要使用強制提及;如果正常提交失敗,可以嘗試強制提交強制提交:

git push -u origin +master
(問題:拒絕上傳解決:修改配置檔案

1.進入當前共享檔案的 .git 目錄 cd .git

2.編輯 config vim config

3.將url位址改成github中專案的 ssh位址

4.儲存並退出

5.再次提交, 不需要輸入賬號密碼)

git安裝及使用

2 配置個人資訊 git config global user.name your name git config global user.email email example.com 3 建立版本庫 mkdir 資料夾名 cd 資料夾名 pwd 顯示當前路徑 git init 將資料夾初始化為g...

Linux下git的安裝及簡單使用

html view plain copy root localhost yum install git root localhost git config global user.name your name root localhost git config global user.email e...

linux下git安裝配置及使用

sudo apt get install git 第一次使用git庫需要使用git clone 遠端位址 將 轉殖到本地 設定全域性的郵件和使用者名稱 git config global user.email 自己的郵箱位址 git config global user.name 自己起的名字 在含...