Git noob在这里,这是我第一次尝试使用git on bash,我在我的主目录中执行了git init。 我意识到这是错误的,然后使用rm -rf $ HOME / .git来撤消它。
现在,当我尝试在名为git-practice的另一个目录中提交更改时,它表示分支主服务器并且不会提交我已添加到暂存区域的任何文件。
当我尝试git add时,终端会出现以下内容:
在分支主机上
初始提交
未跟踪的文件:(使用" git add ..."包括将要提交的内容)
的README.txt
没有添加到提交但未跟踪的文件存在(使用" git add"跟踪)
我很困惑,我该如何解决这个问题?
答案 0 :(得分:0)
First, please use git rev-parse --show-toplevel
to check if the output is git-practice
directory. If it is, that means you are working on this repo.
Then work with the git repo in git-practice
folder. You can use git add README.txt
or git add .
to make the new file README.txt as staged. Finally use git commit -m 'message'
to commit the changes.