git 使用總結

2021-10-01 10:45:09 字數 709 閱讀 1998

1.安裝git

2.git配置

$ git config --global user.name "ztaos"

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

3.git config 檢視配置

git cinfig --system --list

--global

--local

--edit

4.建立版本庫

git init  #把當前目錄變成git可以管理的倉庫

git add filename  #把檔案新增到倉庫

git commit -m "1.0"  #把檔案提交到倉庫

ssh-keygen -t rsa -c "[email protected]" #建立ssh key

id_rsa是私鑰,id_rsa.pub是公鑰

git remote add origin [email protected]:ztaos/sql_demo.git
5.push

git pull --rebase origin master     #本地生成readme檔案

git push origin master

Git使用總結

1.git branch vv 檢視本地分支與遠端分支的關聯關係 2.git push origin localbranch remotebranch 建立遠端分支remotebranch,該遠端分支的內容與localbranch內容一致 3.git push origin remotebranch...

Git使用總結

在linux上安裝git 命令 tar,config,make,sudo make install 在mac os x上安裝git exe程式執行即可 安裝完成後,在開始選單裡找到 git git bash 蹦出乙個類似命令列視窗的東西,就說明git安裝成功!設定使用者名稱 git config g...

Git使用總結

在windows上安裝git 安裝完成後,在開始選單裡找到 git git bash 蹦出乙個類似命令列視窗的東西,就說明git安裝成功!install git on windows安裝完成後,還需要最後一步設定,在命令列輸入 git config global user.name your nam...