tag Flashcards
1
Q
Add tags “git, GitHub” to file foo and bar
A
tag -a git,GitHub foo bar
2
Q
list the tags on file “foo” and “bar”
A
tag -l foo bar
3
Q
find all the files with tags “git” and “github”
A
tag -f git,github
4
Q
display files with marching tags “git” and “github”
A
tag -m git,github foo bar
5
Q
remove tags from file “foo” and “bar”
A
tag -r git,github foo bar
6
Q
set tags on file
A
tag -s git,github foo bar