以前用過github,好久沒用都忘了,今天覆習了一下
1. 檢查是否已經ssh連線好github 在終端上打 ssh -t [email protected] ,如果提示no access等一堆提示, 表明以前已經新增好了ssh public key
2. 建立 遠端倉庫,直接在github 裡面new repository
3. 在終端cd 到要 推送的專案的檔案見,然後敲 git init
4.然後要add 並且commit 到快取區,二步可以變成一步直接敲 git commit -a -m 「message you want to say」,如果沒有敲就push的話會出現 no src error
5.本地倉庫連線遠端倉庫,我用的https 連線,所以要輸入使用者名稱和密碼,cd 到要push的資料夾然後敲git remote add 遠端倉庫的名字 ,然後會提示你輸入名字和密碼
6. push到遠端倉庫, git push -u 倉庫名字 master
7.檢視已經存在的遠端倉庫名字, git remote -v
8.重新命名倉庫名字, git remote rename origin destination, 把origin 命名為 destination
9.刪除倉庫, git remote rm url 或 倉庫名字
Mac下Github的安裝與使用
mac下安裝和使用git 一 安裝 使用homebrew安裝 brew install git 二 建立ssh key,配置git 1 設定使用者名稱和郵箱 git config global user.name chuming03403 git config global user.email c...
mac上使用Xcode連線github使用小結
幾次使用github沒有成功,今天終於重整旗鼓,平心靜氣配置了一把。關鍵點如下 git安裝路徑如果打不開,需要fq才能開啟。xcode如果使用ssh連線,要求輸入使用者名稱密碼,而且老是報錯,那是因為ssh沒配置好。配置好後就不會要求輸入使用者名稱密碼了。xcode中連線使用github xcode...
Docker在Linux和Mac下的安裝
docker 從 17.03 版本之後分為 ce community edition 社群版 和 ee enterprise edition 企業 版 我們 社群版就可以了 9dc8 5822 9fc7 dd38 854a e2d8 8d81 803c 0ebf cd88通過搜尋指紋的後8個字元,驗...