1
I’m working on a project where I currently have 3 branches as well as their respective merges to the master.
The problem is that when I request a push of master to the online repository the number of contributions I have becomes only that of the current day and then I lose all the history of commits of past days.
I followed some instructions and made a git push --all origin
to send all the branches but did not help all the contribution history does not yet appear.
Can anyone tell me why it is not keeping all the drive made in the repository from its inception?
Github’s contribution history only takes into account pushes, the commits places do not count.
– Jéf Bueno
git will not take any commit it already has to the remote branch. That’s normal - git commits are incremental.
– Oralista de Sistemas
Got it, thanks for your reply, but still have a problem, I’ve done some pushes, and even so just displays what I did today, I’d be doing something wrong?
– J.Carvalho