Ya no busques más por internet porque llegaste al lugar adecuado, poseemos la solución que deseas pero sin problemas.
Ejemplo 1: crear un repositorio en github usando la línea de comando
git init
gitadd somefile
git commit -m "initial commit"git remote add origin https://github.com/username/new_repo
git push -u origin master
# New local repositorygit init
gitadd.git commit -m "Initial commit"# New remote repository# Create remote repository (likely on github), then:git remote add origin https://github.com/username/new_repo #httpsgit remote add origin [email protected]:username/new_repo #ssh# Now pushgit push -u origin master
Ejemplo 2: crear un nuevo repositorio en la línea de comando
git init
gitadd README.MD
git commit -m "commit message"git remote add origin git url_of_github_repo
git push origin master
Ejemplo 3: línea de comando de creación de repositorio de github
git **create -d "" **
Si tienes algún enigma o forma de arreglar nuestro escrito puedes escribir un comentario y con mucho gusto lo ojearemos.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)