Solucionado (ver solução)
Solucionado
(ver solução)
7
respostas

Problema em adicionar e comitar alterações.

Quando faço uma segunda alteração no meu index, não estou conseguindo bem adicionar e nem comitar. Apresenta a seguinte mensagem :

$ git add index.html
fatal: Unable to create 'D:/Usuários/145709890329/Desktop/curso-git/.git/index.lock': File exists.

Another git process seems to be running in this repository, e.g.
an editor opened by 'git commit'. Please make sure all processes
are terminated then try again. If it still fails, a git process
may have crashed in this repository earlier:
remove the file manually to continue.
7 respostas

Olá Renato, Tenta ver como está através do comando git status; aparentemente ele está solicitando que você commite antes pois há alguma alteração não commitada.

Aeron, tudo bem ?! Cara, vamos lá, eu já tentei fazer o commit tambem

git commit index.html

Porém está dando o seguinte resultado no console

$ git commit index.html
fatal: Unable to create 'D:/Usuários/145709890329/Desktop/curso-git/.git/index.lock': File exists.

Another git process seems to be running in this repository, e.g.
an editor opened by 'git commit'. Please make sure all processes
are terminated then try again. If it still fails, a git process
may have crashed in this repository earlier:
remove the file manually to continue.

Quando eu escrevo o comando git status aparece o seguinte resultado

$ git status
On branch master
Changes to be committed:
  (use "git reset HEAD <file>..." to unstage)

        modified:   index.html

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:   index.html

Ocorreu uma alteração no código mas não consigo fazer o commit e nem o add.

por favor executa os comandos git commit -p e git whatchanged

git commit -p

$ git commit -p
fatal: Unable to create 'D:/Usuários/145709890329/Desktop/curso-git/.git/index.lock': File exists.

Another git process seems to be running in this repository, e.g.
an editor opened by 'git commit'. Please make sure all processes
are terminated then try again. If it still fails, a git process
may have crashed in this repository earlier:
remove the file manually to continue.

git whatchanged

git whatchanged
commit 481c86ef525f302e0f221839381c8bf442c3bc8d (HEAD -> master)
Author: Renato Areas <rsareas93@gmail.com>
Date:   Tue Jan 22 11:19:34 2019 -0200

    Titulo da pagina

:100644 100644 f51b9a5 063d9b7 M        index.html

commit 7d9e8ef59793cde7aabe04a045175f740d3377f1
Author: Renato dos Santos Áreas <145709890329@tre-rj.gov.br>
Date:   Tue Jan 22 11:15:30 2019 -0200

    criando o projeto

:000000 100644 0000000 f51b9a5 A        index.html

Tem alguma outra branch ativa?

Cara, eu acho que sim ! Como faço para verificar ?

solução!

executa o comando git branch ele irá mostrar as branches existentes. Esse link é bem útil também https://gist.github.com/leocomelli/2545add34e4fec21ec16