X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=pep-git.txt;h=79648690905e3a5221b5723b4a4f87b7f68bacaa;hb=a72749137108e797903e9362b0f7a12355feea56;hp=9fbe37d52dd5746316fe6c3a9953feed6bbf93ca;hpb=4db25b6b0ec373d2a9c80240f007880d3c170b37;p=git-wiki.git diff --git a/pep-git.txt b/pep-git.txt index 9fbe37d..7964869 100644 --- a/pep-git.txt +++ b/pep-git.txt @@ -226,6 +226,20 @@ that non-current branch and then merge:: # rebase instead of merge $ git merge v1 +If you have not yet pushed commits on ``v1``, though, the scenario has +to become a bit more complex. Git refuses to update +non-fast-forwardable branch, and you don't want to do force-pull +because that would remove your non-pushed commits and you would need +to recover. So you want to rebase ``v1`` but you cannot rebase +non-current branch. Hence, checkout ``v1`` and rebase it before +merging:: + + $ git checkout v1 + $ git pull --rebase origin v1 + $ git checkout v2 + $ git pull --rebase origin v2 + $ git merge v1 + It is possible to configure git to make it fetch/pull a few branches or all branches at once, so you can simply run @@ -365,20 +379,6 @@ How to undo a merge https://kernel.org/pub/software/scm/git/docs/howto/revert-a-faulty-merge.html -Advanced topics -=============== - -Staging area ------------- - -Staging area aka index is a distinguishing feature of git. See -`WhatIsTheIndex -`_ and -`IndexCommandQuickref -`_ in Git -Wiki. - - Merge or rebase? ================ @@ -398,6 +398,20 @@ ReReRe https://git-scm.com/book/en/Git-Tools-Rerere +Advanced topics +=============== + +Staging area +------------ + +Staging area aka index is a distinguishing feature of git. See +`WhatIsTheIndex +`_ and +`IndexCommandQuickref +`_ in Git +Wiki. + + Advanced configuration ====================== @@ -423,6 +437,12 @@ TODO: sticky options; example: git grep -O. TODO: bash/zsh completion, bash/zsh prompt. +git on server +============= + +TODO: anonymous access; git over ssh; gitolite; gitweb; cgit; gitlab. + + From Mercurial to git =====================