tag Flashcards

1
Q

Add tags “git, GitHub” to file foo and bar

A

tag -a git,GitHub foo bar

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

list the tags on file “foo” and “bar”

A

tag -l foo bar

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

find all the files with tags “git” and “github”

A

tag -f git,github

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

display files with marching tags “git” and “github”

A

tag -m git,github foo bar

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

remove tags from file “foo” and “bar”

A

tag -r git,github foo bar

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

set tags on file

A

tag -s git,github foo bar

How well did you know this?
1
Not at all
2
3
4
5
Perfectly