I'm getting a really weird behaviour when cloning a repo that a developer friend is working on. Immediately after a git clone
I get a list of 15 different modified
files when checking git status
.
When I do git diff
, I see actual changes to the code.
-$this->title = 'Create Itemtype';
+$this->title = 'Create item type';
- <h1><?= Html::encode($this->title) ?></h1>
-
<?= $this->render('_form', [
The result of git status
is as follows:
$ git status
On branch master
Your branch is up-to-date with 'origin/master'.
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: backend/models/FeaturegroupItem.php
modified: backend/models/FeaturegroupItemSearch.php
modified: backend/models/VendorItemquestionansweroption.php
modified: backend/models/VendorItemquestionansweroptionSearch.php
modified: backend/modules/admin/views/Itemtype/_form.php
modified: backend/modules/admin/views/Itemtype/create.php
modified: backend/modules/admin/views/Itemtype/index.php
modified: backend/modules/admin/views/Itemtype/update.php
modified: backend/modules/admin/views/vendorItemquestionansweroption/_form.php
modified: backend/modules/admin/views/vendorItemquestionansweroption/_search.php
modified: backend/modules/admin/views/vendorItemquestionansweroption/create.php
modified: backend/modules/admin/views/vendorItemquestionansweroption/index.php
modified: backend/modules/admin/views/vendorItemquestionansweroption/update.php
modified: backend/modules/admin/views/vendorItemquestionansweroption/view.php
no changes added to commit (use "git add" and/or "git commit -a")