Skip to content

Instantly share code, notes, and snippets.

@deboraazevedo
Created May 12, 2016 17:41
Show Gist options
  • Save deboraazevedo/cc64590be2d771fc28af63877c9448be to your computer and use it in GitHub Desktop.
Save deboraazevedo/cc64590be2d771fc28af63877c9448be to your computer and use it in GitHub Desktop.
debora@debora-Inspiron-3442:~/EstruturaDeDadosBasica$ cd Listas\ duplamente\ encadeadas\ com\ sentinelas/
debora@debora-Inspiron-3442:~/EstruturaDeDadosBasica/Listas duplamente encadeadas com sentinelas$ ls
Lista.cpp Lista.h main.cpp TesteLista.cpp TesteLista.h
debora@debora-Inspiron-3442:~/EstruturaDeDadosBasica/Listas duplamente encadeadas com sentinelas$ git add Lista.cpp Lista.h main.cpp TesteLista.cpp TesteLista.h
debora@debora-Inspiron-3442:~/EstruturaDeDadosBasica/Listas duplamente encadeadas com sentinelas$ git status
On branch master
Initial commit
Changes to be committed:
(use "git rm --cached <file>..." to unstage)
new file: Lista.cpp
new file: Lista.h
new file: TesteLista.cpp
new file: TesteLista.h
new file: main.cpp
debora@debora-Inspiron-3442:~/EstruturaDeDadosBasica/Listas duplamente encadeadas com sentinelas$ git commit -m "Adding new functions: MF (mover pra frente and CF (contador de frequencia) and updating the other files to receive these function"
[master (root-commit) 9413e8e] Adding new functions: MF (mover pra frente and CF (contador de frequencia) and updating the other files to receive these function
5 files changed, 1478 insertions(+)
create mode 100644 Lista.cpp
create mode 100644 Lista.h
create mode 100644 TesteLista.cpp
create mode 100644 TesteLista.h
create mode 100644 main.cpp
debora@debora-Inspiron-3442:~/EstruturaDeDadosBasica/Listas duplamente encadeadas com sentinelas$ git push
fatal: No configured push destination.
Either specify the URL from the command-line or configure a remote repository using
git remote add <name> <url>
and then push using the remote name
git push <name>
debora@debora-Inspiron-3442:~/EstruturaDeDadosBasica/Listas duplamente encadeadas com sentinelas$
debora@debora-Inspiron-3442:~/EstruturaDeDadosBasica/Listas duplamente encadeadas com sentinelas$ git status
On branch master
nothing to commit, working directory clean
debora@debora-Inspiron-3442:~/EstruturaDeDadosBasica/Listas duplamente encadeadas com sentinelas$ cd ..
debora@debora-Inspiron-3442:~/EstruturaDeDadosBasica$
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment