Searched for this specific issue, haven't been able to find anything relative. I've cloned a repository, no issue - git 'status' returns on master branch and clean. I then checkout a particular branch, say 'dev'. I then fetch n pull (nothing to do). OK... fine...
$> git checkout -b bug_000120 No issues, now on branch 'bug_000120' and ready to do some quick changes. After modifying file(s), I quickly check the status...
$> git status # On branch bug_000120 # Changes not staged for commit: # (use "git add <file>..." to update what will be committed) # (use "git checkout -- <file>..." to discard changes in working directory) # # modified: core/user_manager.class.php # no changes added to commit (use "git add" and/or "git commit -a") I don't get this... no changes to commit?!? Add the file? It already existed prior to the modifications...
With all due respect, anyone? Something cement-headed I'm overlooking? I'm just at a loss... or is this expected?!? I would think the changes would be staged for commit and then push...
Any/all comments are greatly appreciated and welcomed!
Thanx in advance...