84669 person learning
152542 person learning
20005 person learning
5487 person learning
7821 person learning
359900 person learning
3350 person learning
180660 person learning
48569 person learning
18603 person learning
40936 person learning
1549 person learning
1183 person learning
32909 person learning
跟图片上显示的 featurel 是我新建的分支, 修改之后add并提交我的read.txt文件,就显示Unstracked files:
gitskills/
其中gitskills是我在自己github账号上创建的仓库,clone过一次上面的文件到本地的git仓库里面,所以很好奇为什么分支的提交牵扯到了gitskills教程的话参考于廖雪峰个人网站的git教程
git add . git commit -m 'add something'
Correct answer upstairs, see the prompt: nothing added to commit but untracked files present
git add . Add files in the current directory git add -A Add all changed files
Why do you need to add the absolute path to git commit d:readme.txt
I guess you cloned it several times and messed up the directory status.
Change the directory and try again. If there are still problems, take a step-by-step screenshot of git status.
Correct answer upstairs, see the prompt: nothing added to commit but untracked files present
git add . Add files in the current directory
git add -A Add all changed files
Why do you need to add the absolute path to git commit d:readme.txt
I guess you cloned it several times and messed up the directory status.
Change the directory and try again. If there are still problems, take a step-by-step screenshot of git status.