2 коммита назад, изменил его чутка и хочу создать новый коммит. Как это сделать ?
привет, коммит был запушен?
Я сделал git checkout запушеного коммита
я думаю тебе подойдет интерактивный ребейз
если ты исправишь запушеный коммит, то тебе придется делать push —force, а если другие уже скачали и что-то поправили будет конфликт
возможно конечно не для всех очевидно, но да, такие изменения только в своей ветке
Моя ветка, но запушить не получается: Everything up-to-date
https://stackoverflow.com/a/1186549
xxx@yyy:~/GolandProjects/CryptoRipperTGBot$ git rebase --interactive 'b9c2dc4^' Stopped at 7c540eb... my own telegram bot instance You can amend the commit now, with git commit --amend Once you are satisfied with your changes, run git rebase --continue xxx@yyy:~/GolandProjects/CryptoRipperTGBot$ git commit --all --amend --no-edit [detached HEAD 6f870a7] my own telegram bot instance Date: Thu Nov 25 10:35:04 2021 +0200 7 files changed, 71 insertions(+), 21 deletions(-) create mode 100644 internal/mtelegram/bot.go xxx@yyy:~/GolandProjects/CryptoRipperTGBot$ git push --force origin main Enter passphrase for key '/home/nitahake/.ssh/id_ed25519': Everything up-to-date xxx@yyy:~/GolandProjects/CryptoRipperTGBot$
перед commit нужно было правки внести
xxx@yyy:~/GolandProjects/CryptoRipperTGBot$ git status interactive rebase in progress; onto 20f1223 Last command done (1 command done): edit 7c540eb my own telegram bot instance No commands remaining. You are currently editing a commit during a rebase. (use "git commit --amend" to amend the current commit) (use "git rebase --continue" once you are satisfied with your changes) nothing to commit, working tree clean
git rebase —continue
xxx@yyy:~/GolandProjects/CryptoRipperTGBot$ git rebase --continue Successfully rebased and updated detached HEAD. xxx@yyy:~/GolandProjects/CryptoRipperTGBot$ git status HEAD detached from b9c2dc4 nothing to commit, working tree clean xxx@yyy:~/GolandProjects/CryptoRipperTGBot$ git push --force origin main Enter passphrase for key '/home/nitahake/.ssh/id_ed25519': Everything up-to-date xxx@yyy:~/GolandProjects/CryptoRipperTGBot$
Обсуждают сегодня