一.純網(wǎng)頁版向Github上傳項(xiàng)目
在github下建自己的Repository。Create a New Repository如下:
Repository name:通常就寫自己自己要建的工程名翘瓮。
Description:就是你對(duì)工程的描述了本姥。
選擇Public。
點(diǎn)擊 “Create repository”
按照上面的步驟來就行了(注意記得在終端中輸入時(shí)把目錄切換到你要上傳的工程目錄下)馋缅。簡(jiǎn)單分析下上面的步驟:
在github上面新建的項(xiàng)目可以按照下面的進(jìn)行
- touch README.md //新建一個(gè)記錄提交操作的文檔
- git init //初始化本地倉(cāng)庫
- git add README.md //添加
- git add 項(xiàng)目包含的文件
- git commit -m "first commit"http://提交到要地倉(cāng)庫呼盆,并寫一些注釋
- git remote add origin https://github.com/aryehToDog/pageView.git //連接遠(yuǎn)程倉(cāng)庫并建了一個(gè)名叫:origin的別名
- git push -u origin master //將本地倉(cāng)庫的東西提交到地址是origin的地址寞钥,master分支下
最后就是在github頁面,刷新下就OK拉~
二.利用第三方圖形化界面上傳項(xiàng)目的步驟:
由于已經(jīng)push上github界面了不需要 git init
關(guān)于自己項(xiàng)目中是否已經(jīng)下載git.如果已經(jīng)添加了不知道在第三方圖形化工具中會(huì)push 不上去github網(wǎng)站.可以利用終端的兩個(gè)指令來查看:
如果你實(shí)在想嘗試命令操作奈惑,可參考:?
- 顯示:defaults write com.apple.finder AppleShowAllFiles -bool true
- 隱藏:defaults write com.apple.finder AppleShowAllFiles -bool false
1.git add -A
2.git commit -m "first commit"
3.git remote add origin https://github.com/aryehToDog/pageView.git
4.git push -u origin master
如果git remote add origin https://github.com/aryehToDog/pageView.git這一步失敗
提示出錯(cuò)信息:fatal: remote origin already exists.
解決辦法如下:
$ git remote rm origin
然后在執(zhí)行:
$ git remote add origin https://github.com/aryehToDog/pageView.git 就不會(huì)報(bào)錯(cuò)誤了
關(guān)于刪除自己代碼項(xiàng)目
本人github地址:https://github.com/aryehToDog
群號(hào): 255032637