blob: f8946c22eab42a630a3e22bc1d158cecb31a5c28 (
plain)
1
2
3
4
5
6
7
8
9
10
|
The inbox/ directory was disappearing between sessions because git doesn't track
empty directories. A .gitkeep file has been added to fix this.
Action: If your project has an inbox/ directory, ensure it contains a .gitkeep file:
touch inbox/.gitkeep
If your project doesn't have an inbox/ directory yet, create one with .gitkeep:
mkdir -p inbox && touch inbox/.gitkeep
|