私はリモートのものと同期しようとしているローカルのGitリポジトリを持っています。 1つのバイナリファイルがありますが、私は触れませんでした。しかし、私はいくつかの奇妙な理由のためにrebaseすることはできません:Gitリポジトリをpull/rebaseできないのはなぜですか?
git config --local core.autocrlf false
git reset --hard --quiet
git clean --force -d
git fetch --quiet
git checkout master
Already on "master"
git rebase --abort
git stash
warning: CRLF will be replaced by LF in test_assets/favicon.ico.
The file will have its original line endings in your working directory.
warning: CRLF will be replaced by LF in test_assets/favicon.ico.
The file will have its original line endings in your working directory.
git rebase --strategy-option=theirs origin/master
Cannot rebase: You have unstaged changes.
Please commit or stash them.
M test_assets/favicon.ico
私は何ができますか?
「コミットするか隠すか」 – Marvin
メッセージには、あなたがrebaseする前に、変更を行う必要があると言われました –
私は何も変更をしませんでした。 – yegor256