You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For some reason, git can only recognize commands from the base directory. See the example for clarification:
$ git status
On branch feature/FixProjectAfterCaseChange
Your branch is up to date with 'origin/feature/FixProjectAfterCaseChange'.
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git restore <file>..." to discard changes in working directory)
modified: CovidWatch iOS/UIComponents/LargeText.swift
no changes added to commit (use "git add" and/or "git commit -a")
$ cd CovidWatch\ iOS
$ git status
On branch feature/FixProjectAfterCaseChange
Your branch is up to date with 'origin/feature/FixProjectAfterCaseChange'.
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git restore <file>..." to discard changes in working directory)
modified: ../CovidWatch iOS/UIComponents/LargeText.swift
no changes added to commit (use "git add" and/or "git commit -a")
$ git add UIComponents/LargeText.swift
$ git status
On branch feature/FixProjectAfterCaseChange
Your branch is up to date with 'origin/feature/FixProjectAfterCaseChange'.
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git restore <file>..." to discard changes in working directory)
modified: ../CovidWatch iOS/UIComponents/LargeText.swift
no changes added to commit (use "git add" and/or "git commit -a")
The text was updated successfully, but these errors were encountered:
For some reason, git can only recognize commands from the base directory. See the example for clarification:
The text was updated successfully, but these errors were encountered: