gitで他の人のリポジトリを自分が修正し楽しむ方法(Fork)
from git
gitで他の人のリポジトリを自分が修正し楽しむ方法
元カレ計算機を最新化してみる
Fork
https://docs.github.com/ja/enterprise-cloud@latest/get-started/quickstart/fork-a-repo
githubでForkしたいリポジトリに行き、FORKボタンを押す
リポジトリの作成画面で自由に作成する
それをクローンする。
以上!
サンプル)
reactでこれでできた
code:git.ps1
git clone https://github.com/k-p5w/go-motocal.git
cd go-motocal
npm install
npm run build
npm run start
open localhost:8000
サーバで実行
https://go-motocal.vercel.app/
うまく表示されない。。
htmlWebpackPlugin.files.js
とVercelが相性が良くないのかな??
herokuでなら起動した!
https://gbf4motocalculator.herokuapp.com/
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
実施
git remote add upstream https://github.com/octocat/Spoon-Knife.git