Error in Git help me please

0

All the commands I give in git in my linux appear this error and I can not finish the job please help me how to solve

root@joao-pc:/home/joao# git status
fatal: Not a git repository (or any of the parent directories): .git
root@joao-pc:/home/joao# git push
fatal: Not a git repository (or any of the parent directories): .git
root@joao-pc:/home/joao# git pull
fatal: Not a git repository (or any of the parent directories): .git
    
asked by anonymous 05.10.2016 / 16:04

1 answer

2

When you use the git clone <url> command, a folder is created with the same project name as the one on the server. You can only use the git commands within this folder or by pointing to it. Its error is because it is using commands outside the folder. There are several tutorials on the web teaching steps of how to work with git , I recommend you to study a bit about. Below is a link for a simple tutorial:

link

    
05.10.2016 / 16:30