*ページ下部に「GitHubに新規データをpushする」一般的な方法を載せております
Gatsby.jsをpullして内容を改変、その後自分のGitHubレポジトリにpushしようとするとエラーが出た
git push -u origin master
とすると、
! [rejected] master -> master (non-fast-forward)
error: failed to push some refs to 'https://github.com/akahori1/portfolio0515.git'
hint: Updates were rejected because the tip of your current branch is behind
hint: its remote counterpart. Integrate the remote changes (e.g.
hint: 'git pull ...') before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.
と怒られる。
解決策
git fetch
git add .
git commit -m '任意の名前'
git remote rm origin
git remote add origin https://github.com/<ユーザー名>/<あなたのレポジトリ名>.git
git push -u origin master
上記のようにすれば上手くいきました。
GitHubに新たにデータをpushする方法
ローカルでファイルの中身を書き換えたとして、上書きしたデータをGitHubに新たにpushする方法です。
git init
git add .
git commit -m 'Second commit'
git remote rm origin
git remote add origin https://github.com/<ユーザー名>/<あなたのリポジトリ名>.git
git push -u origin master