0
A
回答
0
命令git add
用於將新文件添加到存儲庫中,並告訴Git您想要一個已更改爲下一次提交的文件。
這有很多好處,因爲git commit只會提交那些已經明確添加的文件。注意SVN add僅用於將新文件添加到回購站。
-p, --patch Interactively choose hunks of patch between the index and the work tree and add them to the index. This gives the user a chance to review the difference before adding modified contents to the index.
相關問題
- 1. hg相當於git add -p?
- 2. 從ruby運行`git add -p`
- 3. 更好的git add -p?
- 4. git add的相反-p
- 5. 'git add --patch'包含新文件?
- 6. 爲什麼`git add -p`沒有處理未跟蹤的文件?
- 7. git add -A vs git add file
- 8. git add不添加文件?
- 9. `git add -p`有什麼選擇?
- 10. GIT - git-add錯誤(錯誤文件號)
- 11. git add *(星號)vs git add。 (期)
- 12. 如何git-revert只有部分在git-add -p?
- 13. Git:文件「已更改但未更新」
- 14. git新手 - git add/commit/push/pull
- 15. git add。加入
- 16. git add dirname/*
- 17. 如何在Perforce中交互式添加文件(相當於`git add -p`)
- 18. 「git add」後文件的後續更改
- 19. 是在Git 2.x`git add .`和`git add -A`是否一樣?
- 20. git add *和git add。有什麼區別?
- 21. Git add,git commit,git push不發送文件到GitHub?
- 22. git add。 - >仍然「沒有提交」新文件
- 23. git add submodule of remote
- 24. 'git add。'影響文件夾以外的文件行.git文件夾
- 25. GIT中是否有一個命令可以選擇「git add -p」和「git checkout -p」組合?
- 26. svn「git add」替代?
- 27. git add remote branch
- 28. Git:使用git add -i或git add -e時顯示更多上下文?
- 29. $ git add --all vs $ git add *之間的區別?
- 30. git add ./*.java不起作用?