上傳github的時候遇到了問題瓶摆,這里參考文章 http://www.cocoachina.com/ios/20160212/15024.html? 稍作修改后寫下
1.首先有自己的github賬號,這里注冊地址: https://github.com
2.創(chuàng)建倉庫
//打開終端輸入命令:
defaults write com.apple.finder AppleShowAllFiles YES
顯示Mac文件的命令:defaults write com.apple.finder AppleShowAllFiles YES
隱藏Mac文件的命令:defaults write com.apple.finder AppleShowAllFiles NO
點擊“Finder”===>然后點擊電腦左上角的蘋果標志===>選擇強制退出===>選擇Finder重新開啟酱讶。查看有木有.ssh文件付材,之前沒有配置應該是沒有這個文件夾的酣难,有的話建議刪除掉重新配置拖叙。
//配置SSH keys:
mkdir .ssh? ? ? // 創(chuàng)建一個.ssh 文件夾
cd .ssh? ? ? ? ? // 進入剛創(chuàng)建的 .ssh文件夾目錄里
ssh-Keygen -t rsa -C “youEmail”? ? ? // 雙引號里填寫你github的郵箱地址
輸入完之后一直敲回車,中間提示輸入密碼也不用管蜡歹,繼續(xù)敲回車便是屋厘,直到出現(xiàn)類似這樣。
ls -la? ? ? ? ? //輸入指令月而,如果輸出類似這樣的信息汗洒,就說明配置成功
pbcopy < ~/.ssh/id_rsa.pub? ? ? ? ? //拷貝.ssh/id_rsa.pub里面的內(nèi)容
登陸github 點擊右上角頭像,彈出列表選擇“Settings”父款,然后選擇“SSH and GPG keys”溢谤。
添加 SSH Keys,點擊===>New Ssh key===>Title(可以寫上自己的郵箱)===>key(粘貼在終端復制的SSH Keys)===>點擊Add SSH key添加。
然后回到終端:
ssh -T git@github.com
執(zhí)行完之后會出現(xiàn) Are you sure you want to continue connecting (yes/no)?? 輸入 yes 回車
//上傳本地項目到github上
首先 cd 到本地項目根目錄下面
git init? ? ? ? ? //建立倉庫
git add .? ? ? //? 這個命令會把當前路徑下的所有文件添加到待上傳的文件列表中铛漓。如果想添加某個特定的文件溯香,只需把 . 換成特定的文件名即可
git commit -m "這里寫上提交的注釋"
復制新建倉庫的地址,如圖所示復制一下地址浓恶,也可以復制當前請求網(wǎng)頁的地址
git remote add origin https:后面加上復制的url.git? ? // 關聯(lián)遠程github倉庫
1.如果提示出錯信息: fatal: remote origin already exists. ?
2.或者提示錯誤:fatal: I don't handle protocol 'https:https'
-->解決辦法終端先輸入:git remote rm? origin ? 然后再輸入一次關聯(lián)遠程玫坛。
git push -u origin master? ? ? //上傳代碼到github遠程倉庫,中間可能會讓你輸入Username和Password包晰,你只要輸入github的賬號和密碼就可以湿镀。
刷新一下你的Github,就可以看到你上傳的文件了伐憾。是不是很簡單呢^o^
3.如果出現(xiàn)類似于下面這種錯誤的:
error: failed to push some refs to 'git@github.com:xxx.git
hint: Updates were rejected because the tip of your current branch is behin
hint: its remote counterpart. Integrate the remote changes (e.g.
hint: 'git pull ...') before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.
出現(xiàn)這種錯誤
出現(xiàn)錯誤的主要原因是github中的README.md文件不在本地代碼目錄中勉痴,
通過如下命令進行代碼合并:?git pull --rebase origin master ? ? (注:pull=fetch+merge)
4.如果出現(xiàn)下面問題
To https://github.com/bolagong/RecordLayoutDemo.git
! [rejected]? ? ? ? master -> master (fetch first)
error: failed to push some refs to 'https://github.com/bolagong/RecordLayoutDemo.git'
hint: Updates were rejected because the remote contains work that you do
hint: not have locally. This is usually caused by another repository pushing
hint: to the same ref. You may want to first integrate the remote changes
hint: (e.g., 'git pull ...') before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.
如果是上面的錯誤輸入命令push:?git push -f origin master ?(用 -f 參數(shù)push)
執(zhí)行上面代碼后可以看到本地代碼庫中多了README.md文件
5.如果出現(xiàn)下面問題
fatal: unable to access 'https://github.com/bolagong/AVPlayer.git/': Failed to connect to 127.0.0.1 port 1080: Connection refused
看一下是否添加了代理
通過: ? ?git config --global http.proxy ? ?查詢到當前是否設置了代理
取消這個設置 ??git config --global --unset http.proxy
然后繼續(xù)你的push操作試試,因該就可以了树肃。
如果還沒有好 那么把遠程服務器鏈接在設置一下 ??
把這種格式?https://github.com/用戶名/存儲庫.git
換成SSH的這種 ? ??git@github.com:用戶名/存儲庫.git
然后執(zhí)行 ? ? ? ?git remote set-url origin ??git@github.com:用戶名/存儲庫.git
關聯(lián)好之后蒸矛,,然后繼續(xù)push一下,應該就可以了雏掠,相關參考文章:(https://help.github.com/articles/changing-a-remote-s-url/)