I have a project which I have been modifying and adding, committing, branching, pushing under git bash version control commands from the project directory on a Windows 10 PC. When I finally re-visited my bitbucket.org account, I discovered the last update was listed as 06/28/2015.
That corresponded with me making a branch which shows in my local history as
[dev54] -- [remotes/origin/dev54] 6/28/2015
which is what shows as the last update in my bitbucket projects dashboard list.
After that, I created a brach and then checked it out
---git add -u
---git commit -m '6/27/2015'
--- git push pswd: ..pswd..
========
---git branch dev54mysqli
---git checkout dev54mysqli
==== This does NOT show as updated on bitbucket.org
1. Is there a reason why subsequent pushes after that date stopped updating in the bitbucket.org repository? Is it related to checking out a branch?
2. What alternatives are there to update the existing repo with the missing changes?
3. Would it be better (if I don't need the history), to just start a new repository with the current source code? If so, how do I remove the local git directory and start a new one?
Thanks in advanced for any suggestions.