Git的安裝與配置(簡單明瞭)

2021-10-07 07:18:56 字數 636 閱讀 6136

git是分布式版本管理工具

next。。。

cmd->git --version->列印版本號

【出現版本號即安裝成功】

【–global :全域性變數】

設定使用者姓名

git config --global user.name "姓名"設定可以聯絡的郵箱位址

git config --global user.email "聯絡郵箱"檢視使用者名稱和位址

git config user.name

git config user.email

或【–global :全域性變數】

git config --global user.name

git config --global user.email修改使用者名稱和位址(與設定是一樣的命令,更新資訊)

git config --global user.name 「your new name」

git config --global user.email 「your new email」

方法過載與重寫 簡單明瞭

方法的過載是指同乙個類中具有相同的名字,但引數不同的多個方法,即引數的數量或引數型別不能完全相同.引數不同 可以有三方面的不同 1.數量不同 2.型別不同 3.順序不同 呼叫時,會根據不同的參數列選擇對應的方法。注意 方法過載跟方法的返回值型別沒有任何關係 方法重寫是存在子父類之間的,當子類中的方法...

簡單明瞭的SQL建立語句

1.建立資料庫sql語句 use master goif exists select from sysdatabases where name commonpermission begin select 該資料庫已存在 drop database commonpermission 如果該資料庫已經存...

最簡單明瞭的yield from解釋

def one print one start res yield from two print function get res res return one res deftwo print two start res yield from three print two1 return res...