Ejemplo 1: repositorio existente de git push
cd existing_folder
git init
git remote add origin https://gitlab.com/abc.git
git add .
git commit -m "Initial commit"
git push -u origin master
Ejemplo 2: enviar código a la línea de comandos de github
git add .
git commit -m "message for the commit"
git remote add origin https://url-of-github-repo
git push origin master
Ejemplo 3: agregar repositorio de github
create a new repository on the command line
echo "# {Repo Name}" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/cdcdianne/ReactJS-TheMovieDB.git
git push -u origin main
push an existing repository from the command line
git remote add origin https://github.com/cdcdianne/ReactJS-TheMovieDB.git
git branch -M main
git push -u origin main
Ejemplo 4: git empuja un nuevo repositorio a remoto
$ git remote add origin <remote repository URL>
# Sets the new remote
# Push the changes in your local repository to GitHub.
$ git push -u origin master
# Pushes the changes in your local repository up to the remote repository you specified as the origin
Ejemplo 5: git empuja el código existente a un nuevo repositorio
git remote add origin <remote repository URL>
Ejemplo 6: cómo enviar un proyecto existente a github
git remote add origin
https://github.com/asd/FinraDeck.git (github adresi)
• git push -u origin master
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)