Writes just such a mistake
I understand that the path or directory is not correctly specified ... But when I go to the settings, everything seems to be correct there.
what am I doing wrong?
Writes just such a mistake
I understand that the path or directory is not correctly specified ... But when I go to the settings, everything seems to be correct there.
what am I doing wrong?
Do not use Dropbox to back up your Git repositories. For this, Git is a distributed version control system - the repository can and should be backed up in another repository. Use any hosting repository, such as GitHub or Bitbucket.
I propose a radical way to correct the error - do it all over again and correctly.
The steps are:
It is not clear whether you have a repository there now or not. So in the root folder of your project (re) initialize Git :
cd /home/aleksey/projects/learnhebrew/ rm -r .git git init .gitignore .Now you have the following standard workflow:
Add files to the index - this is the preparation of the next commit.
git add somedir someotherdir and/a/file.txt git add . # передумали? можно убрать файл из индекса git reset filename.txt path Make a commit from index (it keeps a snapshot of the project working folder at a certain moment):
git commit -m 'message to explain changes' Send to remote repository using push :
# в первый раз git push -u origin master # потом git push Source: https://ru.stackoverflow.com/questions/491472/
All Articles
Git root- newman