Git says to use
git add
to add unprotected files to my repo.
I ran unsuccessfully
git add shells/zsh/keyboard_configs/ git add shells/zsh/references/ git add shells/zsh/keyboard_configs/* git add shells/zsh/references/* git add shells/zsh/keyboard_configs/*<TAB> git add shells/zsh/references/*<TAB> git add .
I still understand that files are not being tracked when I see it in
git status
How can you git-add files on long PATH?
I ran
$git status ~/bin # On branch master # Untracked files: # (use "git add <file>..." to include in what will be committed) # # shells/zsh/keyboard_configs/
The following is what is unexpected. I expected that I would add tracking folders and their contents too.
$git status ~/bin # On branch master # Untracked files: # (use "git add <file>..." to include in what will be committed) # # shells/zsh/keyboard_configs/
git add
Léo Léopold Hertz 준영 Jul 04 '09 at 0:09 2009-07-04 00:09
source share