You are on page 1of 4

Last login: Wed Nov 14 22:18:50 on ttys000

MacBook-Pro-de-Alvaro:~ alvaromorales$ git version


git version 2.19.0
MacBook-Pro-de-Alvaro:~ alvaromorales$ ls
Applications Dropbox NetBeansProjects
Desktop Library Pictures
Documents Movies Public
Downloads Music bin
MacBook-Pro-de-Alvaro:~ alvaromorales$ cd desktop
MacBook-Pro-de-Alvaro:desktop alvaromorales$ ls
15_hamartiologia_pecado-y-pecados_estudio.pdf
342160-programming-code-simple_background-coding.jpg
Alvaro Morales actual.doc
Captura de pantalla 2018-11-13 a la(s) 18.08.21.png
Certificado Psicológico Álvaro Morales Flores.pdf
Como Programar en JAVA - Deitel
El libre albedrío.docx
Hermeneutica Satelite Facultad.pptx
IBS declaracion doctrinal Hamartiologia.docx
IBS declaracion doctrinal.docx
IBS ensayo evangelismo y discipulado.docx
ITC
LOGOS-SACRIFICIOS
LaboratorioFinal
POO
Profesor Victor Rodriguez
Proyecto_estacionamiento
Rent Car.mdj
SBIB528 Antropologia-Hamartiologia
Temperamentos
enseres .docx
uml.pdf
vicente berrios
MacBook-Pro-de-Alvaro:desktop alvaromorales$ cd LaboratorioFinal
MacBook-Pro-de-Alvaro:LaboratorioFinal alvaromorales$ ls
EjemploInterface LaboratorioFinal
MacBook-Pro-de-Alvaro:LaboratorioFinal alvaromorales$ cd LaboratorioFinal
MacBook-Pro-de-Alvaro:LaboratorioFinal alvaromorales$ ls
build.xml manifest.mf nbproject src
MacBook-Pro-de-Alvaro:LaboratorioFinal alvaromorales$ git init
Initialized empty Git repository in
/Users/alvaromorales/Desktop/LaboratorioFinal/LaboratorioFinal/.git/
MacBook-Pro-de-Alvaro:LaboratorioFinal alvaromorales$ git status
On branch master

No commits yet

Untracked files:
(use "git add <file>..." to include in what will be committed)

build.xml
manifest.mf
nbproject/
src/

nothing added to commit but untracked files present (use "git add" to track)
MacBook-Pro-de-Alvaro:LaboratorioFinal alvaromorales$ git add .
MacBook-Pro-de-Alvaro:LaboratorioFinal alvaromorales$ git status
On branch master

No commits yet

Changes to be committed:
(use "git rm --cached <file>..." to unstage)

new file: build.xml


new file: manifest.mf
new file: nbproject/build-impl.xml
new file: nbproject/genfiles.properties
new file: nbproject/private/private.properties
new file: nbproject/project.properties
new file: nbproject/project.xml
new file: src/laboratoriofinal/LaboratorioFinal.java

MacBook-Pro-de-Alvaro:LaboratorioFinal alvaromorales$ git commit -m "versionando


codigo"
[master (root-commit) 229920b] versionando codigo
Committer: Alvaro Morales <alvaromorales@MacBook-Pro-de-Alvaro.local>
Your name and email address were configured automatically based
on your username and hostname. Please check that they are accurate.
You can suppress this message by setting them explicitly. Run the
following command and follow the instructions in your editor to edit
your configuration file:

git config --global --edit

After doing this, you may fix the identity used for this commit with:

git commit --amend --reset-author

8 files changed, 1616 insertions(+)


create mode 100644 build.xml
create mode 100644 manifest.mf
create mode 100644 nbproject/build-impl.xml
create mode 100644 nbproject/genfiles.properties
create mode 100644 nbproject/private/private.properties
create mode 100644 nbproject/project.properties
create mode 100644 nbproject/project.xml
create mode 100644 src/laboratoriofinal/LaboratorioFinal.java
MacBook-Pro-de-Alvaro:LaboratorioFinal alvaromorales$ git remote add origin
https://github.com/amorales79/amorales_ITC.git
MacBook-Pro-de-Alvaro:LaboratorioFinal alvaromorales$ git remote -v
origin https://github.com/amorales79/amorales_ITC.git (fetch)
origin https://github.com/amorales79/amorales_ITC.git (push)
MacBook-Pro-de-Alvaro:LaboratorioFinal alvaromorales$ git fetch
MacBook-Pro-de-Alvaro:LaboratorioFinal alvaromorales$ git push
fatal: The current branch master has no upstream branch.
To push the current branch and set the remote as upstream, use

git push --set-upstream origin master

MacBook-Pro-de-Alvaro:LaboratorioFinal alvaromorales$ git push --set-upstream origin


master
Username for 'https://github.com': amorales79
Password for 'https://amorales79@github.com':CONTRASEÑA
Enumerating objects: 14, done.
Counting objects: 100% (14/14), done.
Delta compression using up to 4 threads
Compressing objects: 100% (11/11), done.
Writing objects: 100% (14/14), 13.17 KiB | 2.63 MiB/s, done.
Total 14 (delta 0), reused 0 (delta 0)
remote:
remote: Create a pull request for 'master' on GitHub by visiting:
remote: https://github.com/amorales79/amorales_ITC/pull/new/master
remote:
To https://github.com/amorales79/amorales_ITC.git
* [new branch] master -> master
Branch 'master' set up to track remote branch 'master' from 'origin'.
MacBook-Pro-de-Alvaro:LaboratorioFinal alvaromorales$ git fetch
From https://github.com/amorales79/amorales_ITC
* [new branch] desarrollo -> origin/desarrollo
MacBook-Pro-de-Alvaro:LaboratorioFinal alvaromorales$ git checkout desarrollo
Branch 'desarrollo' set up to track remote branch 'desarrollo' from 'origin'.
Switched to a new branch 'desarrollo'
MacBook-Pro-de-Alvaro:LaboratorioFinal alvaromorales$ git branch
* desarrollo
master
MacBook-Pro-de-Alvaro:LaboratorioFinal alvaromorales$ git status
On branch desarrollo
Your branch is up to date with 'origin/desarrollo'.

nothing to commit, working tree clean


MacBook-Pro-de-Alvaro:LaboratorioFinal alvaromorales$ git status
On branch desarrollo
Your branch is up to date with 'origin/desarrollo'.

Changes not staged for commit:


(use "git add <file>..." to update what will be committed)
(use "git checkout -- <file>..." to discard changes in working directory)

modified: src/laboratoriofinal/LaboratorioFinal.java

no changes added to commit (use "git add" and/or "git commit -a")
MacBook-Pro-de-Alvaro:LaboratorioFinal alvaromorales$ git add .
MacBook-Pro-de-Alvaro:LaboratorioFinal alvaromorales$ git commit -m "probando
cambios"
[desarrollo 3697cb0] probando cambios
Committer: Alvaro Morales <alvaromorales@MacBook-Pro-de-Alvaro.local>
Your name and email address were configured automatically based
on your username and hostname. Please check that they are accurate.
You can suppress this message by setting them explicitly. Run the
following command and follow the instructions in your editor to edit
your configuration file:

git config --global --edit

After doing this, you may fix the identity used for this commit with:

git commit --amend --reset-author

1 file changed, 2 insertions(+)


MacBook-Pro-de-Alvaro:LaboratorioFinal alvaromorales$ git push
Enumerating objects: 9, done.
Counting objects: 100% (9/9), done.
Delta compression using up to 4 threads
Compressing objects: 100% (3/3), done.
Writing objects: 100% (5/5), 450 bytes | 450.00 KiB/s, done.
Total 5 (delta 2), reused 0 (delta 0)
remote: Resolving deltas: 100% (2/2), completed with 2 local objects.
To https://github.com/amorales79/amorales_ITC.git
229920b..3697cb0 desarrollo -> desarrollo
MacBook-Pro-de-Alvaro:LaboratorioFinal alvaromorales$

You might also like