0% found this document useful (0 votes)
6 views1 page

GITLAB

The document details a series of Git commands executed in a terminal, including adding a remote repository, creating and committing a new file, and pushing changes to a GitLab repository. A new file named 'pepe.txt' was added with the content 'NANIS PEREZ' and an email address. The push operation successfully uploaded the changes to the master branch of the specified remote repository.

Uploaded by

Alejandro Perez
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
6 views1 page

GITLAB

The document details a series of Git commands executed in a terminal, including adding a remote repository, creating and committing a new file, and pushing changes to a GitLab repository. A new file named 'pepe.txt' was added with the content 'NANIS PEREZ' and an email address. The push operation successfully uploaded the changes to the master branch of the specified remote repository.

Uploaded by

Alejandro Perez
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

aleja@Laptop-de-Alejo MINGW64 / (master)

$ git remote -v

aleja@Laptop-de-Alejo MINGW64 / (master)


$ git remote add origin https://gitlab.com/alejo_perez91/sena.git

aleja@Laptop-de-Alejo MINGW64 / (master)


$ git remote -v
origin https://gitlab.com/alejo_perez91/sena.git (fetch)
origin https://gitlab.com/alejo_perez91/sena.git (push)

aleja@Laptop-de-Alejo MINGW64 / (master)


$ cat kotlin.txt
ALEJANDRO PEREZ [email protected]

aleja@Laptop-de-Alejo MINGW64 / (master)


$ cat > pepe.txt
NANIS PEREZ
[email protected]

aleja@Laptop-de-Alejo MINGW64 / (master)


$ git add .

aleja@Laptop-de-Alejo MINGW64 / (master)


$ git commit -m "Añadido pepe"
[master a5bf7e9] Añadido pepe
1 file changed, 2 insertions(+)
create mode 100644 pepe.txt

aleja@Laptop-de-Alejo MINGW64 / (master)


$ git push origin master
Enumerating objects: 6763, done.
Counting objects: 100% (6763/6763), done.
Delta compression using up to 4 threads
Compressing objects: 100% (6339/6339), done.
Writing objects: 100% (6763/6763), 102.06 MiB | 1.35 MiB/s, done.
Total 6763 (delta 1338), reused 0 (delta 0), pack-reused 0 (from 0)
remote: Resolving deltas: 100% (1338/1338), done.
remote:
remote: To create a merge request for master, visit:
remote: https://gitlab.com/alejo_perez91/sena/-/merge_requests/new?merge_request
%5Bsource_branch%5D=master
remote:
To https://gitlab.com/alejo_perez91/sena.git
* [new branch] master -> master

aleja@Laptop-de-Alejo MINGW64 / (master)

You might also like