Agregar un proyecto existente a GitHub utilizando la línea de comando
Poner tu trabajo existente en GitHub Enterprise puede permitirte compartir y colaborar de muchas maneras increíbles.
Si estás migrando tu proyecto desde CodePlex, lee la [guía de migración] (https://aka.ms/codeplex-guide) para obtener más información.
Sugerencia: Si estás más a gusto con una interfaz de usuario de tipo "apuntar y hacer clic", trata de agregar tu proyecto con GitHub Desktop. Para más información, consulta "Agregar un repositorio de tu computadora local a GitHub Desktop" en GitHub Desktop Ayuda.
Advertencia: Nunca implementes los comandos git add
, commit
ni push
con la información confidencial en un repositorio remoto. La información confidencial, incluye, entre otros datos:
- Contraseñas
- Claves SSH
- Claves de acceso AWS
- Claves API
- Números de tarjeta de crédito
- Números de PIN
Para obtener más información, consulta "Eliminar datos confidenciales de un repositorio."
-
Crear un repositorio nuevo en tu instancia de servidor de GitHub Enterprise. Para evitar errores, no inicialices el nuevo repositorio con archivos README licencia o
gitingnore
. Puedes agregar estos archivos después de que tu proyecto se haya subido a GitHub Enterprise. -
Abre el terminal TerminalTerminalGit Bash.
-
Cambiar el directorio de trabajo actual en tu proyecto local.
-
Inicializar el directorio local como un repositorio de Git.
$ git init
-
Agregar los archivos a tu nuevo repositorio local. Esto representa la primera confirmación.
$ git add . # Agrega el archivo en el repositorio local y lo presenta para la confirmación. Para deshacer un archivo, usa 'git reset HEAD YOUR-FILE'.
-
Confirmar los archivos que has preparado en tu repositorio local.
$ git commit -m "First commit" # Commits the tracked changes and prepares them to be pushed to a remote repository. Para eliminar esta confirmación y modificar el archivo, usa 'git reset --soft HEAD~1' y confirma y agrega nuevamente el archivo.
-
At the top of your GitHub Enterprise repository's Quick Setup page, click to copy the remote repository URL.
-
En Terminal, agrega la URL para el repositorio remoto donde se subirá tu repositorio local.
$ git remote add origin remote repository URL# Sets the new remote $ git remote -v # Verifies the new remote URL
-
Sube los cambios en tu repositorio local a tu instancia de servidor de GitHub Enterprise.
$ git push -u origin master # Pushes the changes in your local repository up to the remote repository you specified as the origin
-
Crear un repositorio nuevo en tu instancia de servidor de GitHub Enterprise. Para evitar errores, no inicialices el nuevo repositorio con archivos README licencia o
gitingnore
. Puedes agregar estos archivos después de que tu proyecto se haya subido a GitHub Enterprise. -
Abre el terminal TerminalTerminalGit Bash.
-
Cambiar el directorio de trabajo actual en tu proyecto local.
-
Inicializar el directorio local como un repositorio de Git.
$ git init
-
Agregar los archivos a tu nuevo repositorio local. Esto representa la primera confirmación.
$ git add . # Agrega el archivo en el repositorio local y lo presenta para la confirmación. Para deshacer un archivo, usa 'git reset HEAD YOUR-FILE'.
-
Confirmar los archivos que has preparado en tu repositorio local.
$ git commit -m "First commit" # Commits the tracked changes and prepares them to be pushed to a remote repository. Para eliminar esta confirmación y modificar el archivo, usa 'git reset --soft HEAD~1' y confirma y agrega nuevamente el archivo.
-
At the top of your GitHub Enterprise repository's Quick Setup page, click to copy the remote repository URL.
-
En la indicación Command (Comando), agrega la URL para el repositorio remoto donde se subirá tu repositorio local.
$ git remote add origin remote repository URL# Sets the new remote $ git remote -v # Verifies the new remote URL
-
Sube los cambios en tu repositorio local a tu instancia de servidor de GitHub Enterprise.
$ git push origin master # Pushes the changes in your local repository up to the remote repository you specified as the origin
-
Crear un repositorio nuevo en tu instancia de servidor de GitHub Enterprise. Para evitar errores, no inicialices el nuevo repositorio con archivos README licencia o
gitingnore
. Puedes agregar estos archivos después de que tu proyecto se haya subido a GitHub Enterprise. -
Abre el terminal TerminalTerminalGit Bash.
-
Cambiar el directorio de trabajo actual en tu proyecto local.
-
Inicializar el directorio local como un repositorio de Git.
$ git init
-
Agregar los archivos a tu nuevo repositorio local. Esto representa la primera confirmación.
$ git add . # Agrega el archivo en el repositorio local y lo presenta para la confirmación. Para deshacer un archivo, usa 'git reset HEAD YOUR-FILE'.
-
Confirmar los archivos que has preparado en tu repositorio local.
$ git commit -m "First commit" # Commits the tracked changes and prepares them to be pushed to a remote repository. Para eliminar esta confirmación y modificar el archivo, usa 'git reset --soft HEAD~1' y confirma y agrega nuevamente el archivo.
-
At the top of your GitHub Enterprise repository's Quick Setup page, click to copy the remote repository URL.
-
En Terminal, agrega la URL para el repositorio remoto donde se subirá tu repositorio local.
$ git remote add origin remote repository URL# Sets the new remote $ git remote -v # Verifies the new remote URL
-
Sube los cambios en tu repositorio local a tu instancia de servidor de GitHub Enterprise.
$ git push origin master # Pushes the changes in your local repository up to the remote repository you specified as the origin