1GH-PROJECT(1) GitHub CLI manual GH-PROJECT(1)
2
3
4
6 gh-project - Work with GitHub Projects.
7
8
9
11 gh project <command> [flags]
12
13
14
16 Work with GitHub Projects. Note that the token you are using must have
17 'project' scope, which is not set by default. You can verify your token
18 scope by running 'gh auth status' and add the project scope by running
19 'gh auth refresh -s project'.
20
21
22
24 gh-project-close(1)
25 Close a project
26
27
28 gh-project-copy(1)
29 Copy a project
30
31
32 gh-project-create(1)
33 Create a project
34
35
36 gh-project-delete(1)
37 Delete a project
38
39
40 gh-project-edit(1)
41 Edit a project
42
43
44 gh-project-field-create(1)
45 Create a field in a project
46
47
48 gh-project-field-delete(1)
49 Delete a field in a project
50
51
52 gh-project-field-list(1)
53 List the fields in a project
54
55
56 gh-project-item-add(1)
57 Add a pull request or an issue to a project
58
59
60 gh-project-item-archive(1)
61 Archive an item in a project
62
63
64 gh-project-item-create(1)
65 Create a draft issue item in a project
66
67
68 gh-project-item-delete(1)
69 Delete an item from a project by ID
70
71
72 gh-project-item-edit(1)
73 Edit an item in a project
74
75
76 gh-project-item-list(1)
77 List the items in a project
78
79
80 gh-project-list(1)
81 List the projects for an owner
82
83
84 gh-project-mark-template(1)
85 Mark a project as a template
86
87
88 gh-project-view(1)
89 View a project
90
91
92
94 $ gh project create --owner monalisa --title "Roadmap"
95 $ gh project view 1 --owner cli --web
96 $ gh project field-list 1 --owner cli
97 $ gh project item-list 1 --owner cli
98
99
100
101
102
104 gh(1)
105
106
107
108 Oct 2023 GH-PROJECT(1)