git命令操作
git push 提交
git clone +地址
開啟vue專案:npm install 安裝依賴包
cnpm install 安裝依賴包
進入專案根目錄 npm run dev(跑起來~)
>Listening at http://localhost:8080
git pull 更新
git add . 根目錄下提交
git commit -m "" 命名
git push 提交
上傳專案檔案:git clone +地址
git git add .
git commit -m'lch'
git push
衝突解決:
git pull
git stash
git pull
git stash pop
git status
git add .
git commit -m '衝突'
git push
gitlab上傳專案步驟:
git init
git remote add origin +地址
git add .(稍等片刻)
git commit -m "註釋"
git push -u origin master