25 lines
754 B
Plaintext
25 lines
754 B
Plaintext
1 - instalamos el GIT descargando el archivo "Git-2.52.0-64-bit" del URL https://git-scm.com/install/windows
|
|
|
|
2 - nos ubicamos en la carpeta donde queramos copiar los archivos ejemplo
|
|
D:/temp/prueba -(contiene una carpeta birt.war)
|
|
|
|
3 - click derecho y abrimos una terminal
|
|
|
|
4 - iniciamos la configuración y conexión del GIT mediante las siguientes líneas de comando
|
|
|
|
git init
|
|
git add .
|
|
git commit -m "1 test"
|
|
git remote add origin http://194.5.152.156:3000/Rodrigo/prueba-1.git
|
|
git push origin master -f
|
|
|
|
git init
|
|
git config --global user.name "admin"
|
|
git config --global user.email "rodrigo15jul67@hotmail.com"
|
|
git commit -m "1 test"
|
|
git remote add origin http://194.5.152.156:3000/Rodrigo/prueba-1.git
|
|
git push origin master -f
|
|
git add .
|
|
|
|
|