事情是這樣的。最初上傳了一些電子書在material倉庫。開始是這樣:
但是我想把它放到乙個資料夾裡面。
於是看網上的方法在github上新建了乙個e-books資料夾。
現在把電子書移到e-books資料夾中。利用本地的git。先執行git pull origin master把檔案拖到本地
在git執行dir可以看到剛剛新建的資料夾
然後執行git mv 大話資料結構.pdf e-books/把大話資料結構移到資料夾中
可以看到沒有訊息就是最好的訊息,說明移動成功
git add 大話資料結構.pdf
git commit -m "latest commit"
git push -u origin master
現在可以在github上e-books檔案中看到電子書已經被移過來了
在github上建立新分支
在github上建立倉庫 create a new repository on the command line touch readme.md git init git add readme.md git commit m first commit git remote add origin gi...
在github上建立新分支
在github上建立倉庫 create a new repository on the command line touch readme.md git init git add readme.md git commit m first commit git remote add origin gi...
matlab 把座標軸移動到原點(0,0)上
用matlab繪圖時,是不能顯示座標軸的,只會在底邊框和左邊框顯示刻度,而且左下角也不是原點 0,0 所以,本文就是如何用matlab來實現把座標軸移到 0,0 function function fig handle shift axis to origin axes handle functio...