I have the opportunity to use git for my R programming, and I came up with the following problem:
most of the time I need to write branches, since the same data set can produce different analyzes, tables and diagrams, like this one, I branched D into D1 and E.
A
\
D1
when something is wrong in B, I will check B, transcode it and then pass it again, say that it is now B1
A---B---C---D---E
\ \
B1 D1
In order for C, D, D1, E to start with B1, as shown below, I need to make LOTS from rebase
A
\
D1
git rebase B1 C
git rebase C D
git rebase D D1
git rebase D E
I think it is completely stupid to do this, being newer in git, can someone enlighten me so I don't have to hit rebaseall the time?
source
share