-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathblacklist.sample
More file actions
25 lines (25 loc) · 819 Bytes
/
blacklist.sample
File metadata and controls
25 lines (25 loc) · 819 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#
# This is a sample blacklist file for update.blacklist
#
# The format of this file is as follows:
#
# * Any line beginning with a '#' sign is a comment, and will be ignored
# * All leading and trailing whitespace is ignored
# * Blank lines are ignored
# * Any remaining data is considered blacklist entries in the following formats:
#
# # Blacklist any tag or branch named "foo"
# foo
#
# # Blacklist the commit object "4b18c65". A minimum of 7 characters are required.
# :4b18c65
#
# # Blacklist commit object "4b18c65" from branch or tag "foo". This commit
# # may still be pushed to other branches or tags.
# foo:4b18c65
#
# * Comments following entries will be displayed to the user as a reason for
# the deny
#
# foo # Sorry, branch foo has been removed
#