FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
github_cli/features/commit.feature at master · danieldeb/github_cli · GitHub
danieldeb
/
github_cli
Public
forked from
piotrmurach/github_cli
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
github_cli
/
features
/
commit.feature
Copy path
More file actions
More file actions
Latest commit
History
History
History
25 lines (21 loc) · 746 Bytes
Breadcrumbs
github_cli
/
features
/
commit.feature
Copy path
File metadata and controls
25 lines (21 loc) · 746 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
Feature
:
gcli commit
@ci-run
Scenario
:
Available commands
When
I run `gcli commit`
Then
the exit status should be 0
And
the output should contain
"commit get"
And
the output should contain
"commit create"
Scenario
:
Get commit
Given
the GitHub API server:
"""
get('/repos/wycats/thor/git/commits/59b23de9b91d') { status 200 }
"""
When
I run `gcli commit get wycats thor 59b23de9b91d`
Then
the exit status should be 0
Scenario
:
Create commit
Given
the GitHub API server:
"""
post('/repos/wycats/thor/git/commits') { status 200 }
"""
When
I run `gcli commit create wycats thor --message=
'my commit'
--tree=827efc --parents=[
'7d1b31e'
]`
Then
the exit status should be 0
Back
|
FazBrowse Home
|
New Git URL