gitで他の人のリポジトリを自分が修正し楽しむ方法(Fork)
gitで他の人のリポジトリを自分が修正し楽しむ方法
Fork
githubでForkしたいリポジトリに行き、FORKボタンを押す
リポジトリの作成画面で自由に作成する
それをクローンする。
以上!
サンプル)
code:git.ps1
cd go-motocal
npm install
npm run build
npm run start
open localhost:8000
サーバで実行
うまく表示されない。。
htmlWebpackPlugin.files.js
code:heroku.ps1
cd terget-prog
git init
heroku git:remote -a gbf-calcman
git add .
git commit -am "make it better"
git push heroku master
確認
git remote -v
実施