建立賬戶
git config --global user.name "我的姓名"
git config --global user.email "我的郵箱"
檢視賬戶
git config --global user.name
git config --global user.email
郵箱為剛剛配置好的郵箱
ssh-keygen -t rsa -c "***xx@***xx.com"
按照提示進行三次回車即可
vim ~/.ssh/id_rsa.pub
也可以在c盤下查詢ssh目錄
切記三個平台可以使用同乙個公鑰
//碼雲
ssh -t [email protected]
//hi hanmeimei! you've successfully authenticated, but gitee.com does not provide shell access.表示連線成功
//github
ssh -t [email protected]
//hi hanmeimei! you've successfully authenticated, but github does not provide shell access.表示連線成功。
//git使用
//(1)初次使用
echo "# heima" >> readme.md
git init
git add readme.md // 資料夾已有內容 git add ./
git commit -m "first commit"
git remote add origin [email protected]:你的賬戶名字/倉庫名字.git
git push -u origin master
// (2)再次使用
git remote add origin [email protected]:你的賬戶名字/倉庫名字.git
git push -u origin master
7、如何將分支**合併到master中
1.首先切換到分支;
git checkout roles
2.使用git pull 把分支**pull下來;
git pull
3.切換到主分支;
git checkout master
4.把分支的**merge到主分支;
git merge roles
5.git push推上去ok完成,現在 你自己分支的**就合併到主分支上了。
git push
本次學習完畢。 前端的四次元口袋 前端跨域等問題處理
同源策略 是乙個重要的安全策略,用於限制乙個origin的文件或它載入的指令碼如何能與另乙個源的資源進行互動。它能夠幫助阻隔惡意文件,減少可能被攻擊的媒介 同源 就是兩個url的protocal 協議 port 主機 host 埠 相同 不同源 就是兩個url中三要素 協議 網域名稱 埠 有乙個不同...
求解一元四次方程
本程式基於.平台,編譯環境是microsoft visual c 對於vc 6.0平台的修改,只須把stdafx.h換成iostream.h,然後去掉 中的 using namespace std include stdafx.h include math.h using namespace std...
TCP的四次揮手
揮手 是為了終止連線,tcp四次揮手流程圖如下 tcp採用四次揮手來釋放連線 第一次揮手 client傳送乙個fin用來關閉client到server的資料傳送,client進入fin wait 1狀態 第二次揮手 server收到fin後,傳送乙個ack給client,確認序號為收到序號 1 與s...