Je suis en train d'écrire quelques scripts pour mon flux de travail Git.
J'ai besoin de réinitialiser une autre branche (existante) à la branche actuelle, sans vérification.
Avant :
CurrentBranch: commit A
OtherBranch: commit B
Après :
CurrentBranch: commit A
OtherBranch: commit A
Équivalent de
$ git checkout otherbranch
$ git reset --soft currentbranch
$ git checkout currentbranch
(Note --soft
: Je ne veux pas affecter l'arbre de travail).
Est-ce possible ?
0 votes
Quelqu'un sait-il si cela est également possible dans Egit ?