Adicionar um arquivo a um repositório usando a linha de comando
Você pode fazer upload de um arquivo existente em um repositório do GitHub Enterprise usando a linha de comando.
Dica: também é possível adicionar um arquivo existente a um repositório do site do GitHub Enterprise.
This procedure assumes you've already:
- Created a repository on GitHub Enterprise, or have an existing repository owned by someone else you'd like to contribute to
- Cloned the repository locally on your computer
Warning: Never git add
, commit
, or push
sensitive information to a remote repository. Sensitive information can include, but is not limited to:
- Passwords
- SSH keys
- AWS access keys
- API keys
- Credit card numbers
- PIN numbers
For more information, see "Removing sensitive data from a repository."
-
No seu computador, mova o arquivo do qual deseja fazer upload para o GitHub Enterprise, no diretório local que foi criado quando o repositório foi clonado.
-
Abra Terminal (Terminal)Terminal (Terminal)Git Basho terminal.
-
Mude o diretório de trabalho atual para o seu repositório local.
-
Stage the file for commit to your local repository.
$ git add . # Adiciona o arquivo ao repositório local e faz stage dele para commit. To unstage a file, use 'git reset HEAD YOUR-FILE'.
-
Commit the file that you've staged in your local repository.
$ git commit -m "Add existing file" # Faz o commit das alterações controladas e as prepara para o push em um repositório remoto. To remove this commit and modify the file, use 'git reset --soft HEAD~1' and commit and add the file again.
-
Push the changes in your local repository to sua instância do GitHub Enterprise Server.
$ git push origin your-branch# Pushes the changes in your local repository up to the remote repository you specified as the origin