From 39969a734dd48fab1f9fc69033edca8959d92220 Mon Sep 17 00:00:00 2001 From: Rafael Fontenelle Date: Thu, 10 Oct 2024 20:01:14 -0300 Subject: [PATCH] gh-codespace: add Brazilian Portuguese translation --- pages.pt_BR/common/gh-codespace.md | 36 ++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 pages.pt_BR/common/gh-codespace.md diff --git a/pages.pt_BR/common/gh-codespace.md b/pages.pt_BR/common/gh-codespace.md new file mode 100644 index 0000000000000..c91f808166a91 --- /dev/null +++ b/pages.pt_BR/common/gh-codespace.md @@ -0,0 +1,36 @@ +# gh codespace + +> Connect and manage your codespaces in GitHub. +> More information: . + +- Create a codespace in GitHub interactively: + +`gh codespace create` + +- List all available codespaces: + +`gh codespace list` + +- Connect to a codespace via SSH interactively: + +`gh codespace ssh` + +- Transfer a specific file to a codespace interactively: + +`gh codespace cp {{path/to/source_file}} remote:{{path/to/remote_file}}` + +- List the ports of a codespace interactively: + +`gh codespace ports` + +- Display the logs from a codespace interactively: + +`gh codespace logs` + +- Delete a codespace interactively: + +`gh codespace delete` + +- Display help for a subcommand: + +`gh codespace {{code|cp|create|delete|edit|...}} --help`