We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 94a640b + 5fea604 commit 0052199Copy full SHA for 0052199
pkg/cmd/codespace/ssh.go
@@ -179,9 +179,9 @@ func newCpCmd(app *App) *cobra.Command {
179
provided by untrusted users; see <https://lwn.net/Articles/835962/> for discussion.
180
`, "`"),
181
Example: heredoc.Doc(`
182
- $ gh codespace cp -e README.md 'remote:/workspace/$RepositoryName/'
+ $ gh codespace cp -e README.md 'remote:/workspaces/$RepositoryName/'
183
$ gh codespace cp -e 'remote:~/*.go' ./gofiles/
184
- $ gh codespace cp -e 'remote:/workspace/myproj/go.{mod,sum}' ./gofiles/
+ $ gh codespace cp -e 'remote:/workspaces/myproj/go.{mod,sum}' ./gofiles/
185
`),
186
RunE: func(cmd *cobra.Command, args []string) error {
187
return app.Copy(cmd.Context(), args, opts)
0 commit comments