EN
Git - how to add untracked files using git bash?
1
answers
3
points
How can I add untracked files using git bash?
1 answer
5
points
As I understand, you want to add some untracked files to the tracked list.
There are 2 easy ways:
git add -A- adds all files to the tracked list (untracked and modiffied),git add path/to/some/file- added only indicated file to the tracked list.
0 comments
Add comment