一次奇葩的程式碼轉移經歷
阿新 • • 發佈:2020-11-13
零、最近在看一本書,機械工業出版社的《C指標原理揭祕 基於底層實現機制》,內容不是吐槽的重點,吐槽下給程式碼的方式,居然是個vdi檔案,你沒看錯。該檔案是virtual box的硬碟映象檔案,作者的腦回路有點靑奇。
一、安裝了virtual box虛擬機器,經過命令sudo modprobe vboxdrv後,虛擬機器啟動了
二、新建虛擬機器,
1、名稱:1111 資料夾:預設就好 型別:linux 版本:ubuntu (64-bit)
2、記憶體2048M足夠
3、選擇 使用已有的虛擬硬碟檔案,檔名是my ub.vdi,選擇建立
三、啟動虛擬機器,選擇第一項預設的即可
1、使用者名稱:myhaspl 密碼168登陸進系統,成功後
2、安裝git sudo apt-get install git
1 echo "# codeStudy" >> README.md 2 git init 3 git add README.md 4 git commit -m "first commit" 5 git branch -M main 6 git remote add origin https://github.com/guochaoxxl/bookCode 7git push -u origin main
和下面現有倉庫:
1 or push an existing repository from the command line 2 3 git remote add origin https://github.com/guochaoxxl/bookCode 4 git branch -M main 5 git push -u origin main
5、依次執行框一中的命令即可:
我先執行了:git clone https://github.com/guochaoxxl/bookCode 並執行了 mv learn* /bookCode/
git init
git add *
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/guochaoxxl/bookCode
git push -u origin main 此時,一般要求提供使用者名稱和密碼,輸入登陸資訊,等待片刻,即可完成程式碼的上傳工作了