😁

gistにgit repoをpushする

2024/05/18に公開

基本

gistをgit cloneしてpush すればいい。素直。

適当に作ったgit repoをpush したい

適当にbrowserからgistをつくる。

git remote add origin git@gist.github.com:cf7f6114c8af54130cd083450cc8c2d8.git
git push origin main

set upstream

↓あんまりこれはよくなかった

set upstreamしつつ、force push。

git push -f --set-upstream git@gist.github.com:eaeb70df1162cd6ea44df221d4dc84d5.git main

おわり

一番上のファイル名が gistの名前になるみたいなので、.gitignoreって名前になってしまう

Discussion