碼雲的使用以及常見的問題

2021-08-30 21:42:06 字數 1021 閱讀 2756

1.開啟終端 輸入命令 cd ~/.ssh

2.然後輸入ssh-keygen -t rsa -c "[email protected]"

"[email protected]"為自己的郵箱喲

3.cat *.pub 產生公鑰匙

如果顯示秘鑰已經存在可以,把id_rsa* 檔案刪掉 rm id_rsa*,再重新執行上面的命令

將其公鑰新增到碼雲settings---->ssh key中。

4.然後在碼雲上建立乙個專案

git config --global user.name "winner"

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

注意 以下建立的檔案下,是自己要上傳的內容所在的資料夾test_classification

mkdir test_classification

cd test_classification

git init

touch readme.md

git add .

git commit -m "first commit"

git remote add origin [email protected]:winne/test_classification.git

git push -u origin master

如果git push -u origin master

sign_and_send_pubkey: signing failed: agent refused operation

permission denied (publickey).

fatal: 無法讀取遠端倉庫。

請確認您有正確的訪問許可權並且倉庫存在。

解決辦法

輸入以下兩個命令:

eval "$(ssh-agent -s)"

ssh-add

然後 git push -u origin master

這樣你可以上傳自己的第乙個專案到碼雲上了。

lftp的使用以及常見的指令

lftp的意思是用lftp登入到ftp伺服器上 lftp ip p port u user,password e commands bye ftp裡面常用的指令 1 登入ftp 2 lftp中文亂碼問題 對於像我這樣的新手,登入後看到的都是中文亂碼 因為一般本地都是utf 8的編碼 怎麼半呢,用 s...

C 中template的使用以及常見問題

原文 模板的宣告有兩種 template 或者template。雖然建議使用typename以避免二義性,但是這兩種實際上是都可以的。模板只作用於其下方的乙個類或者函式,所以在類外實現成員函式時要對每乙個函式都在之前進行模板的宣告 即使如果這個函式沒有用到這個模板型別,但是類名裡也要加上 與普通函式...

碼雲以及Git的使用

首先訪問 進行註冊 註冊完成後,進入如下頁面 點選新建倉庫 設定自己的倉庫名稱,選擇是否公開 將圖中所示框取消勾選 然後進入以下頁面,不要關閉此頁面 如圖所示則安裝完成 在自己的磁碟下建立新的資料夾如圖python 24就是我們新創的資料夾 在資料夾下點選右鍵選單,單擊 git bash here,...