I began to rewrite some of the Perl programs from NASM source files. I already made some commits for my working copy , and I was wondering git pullif I should instead of doing if I should have done git rebase.
git pull
git rebase
I pretty much decided what I had to do git rebase, but I donβt know how to reprocess my repository to achieve this effect or even if it is possible.
, Git Magic , . , - , . , .
- , , , , . ? , commit privileges β , , , . , , , . ?
rebase-vs-merge.
git log
git reset HEAD^
git fetch, rebase 3.
git fetch
git, , . , ( git, tarball ).
:
up = pull --rebase origin
YMMV
You should be able to undo your last merge by changing these branches:
git branch your-changes <reflog of "Reworked test files..."> git branch -f master remotes/origin/master
After that, you can try rebooting.
As a continuation of Dustin's answer, it should be "git config --global branch.master.rebase true".