How can I stash only one of multiple changed files on my branch?
相关问题
- Why does recursive submodule update from github fa
- Extended message for commit via Visual Studio Code
- Emacs shell: save commit message
- Can I organize Git submodules in a flat hierarchy?
- Upload file > 25 MB on Github
相关文章
- 请教Git如何克隆本地库?
- GitHub:Enterprise post-receive hook
- Git Clone Fails: Server Certificate Verification F
- SSIS solution on GIT?
- Is there a version control system abstraction for
- ssh: Could not resolve hostname git: Name or servi
- Cannot commit changes with gitextensions
- git: retry if http request failed
I've reviewed answers and comments for this and a number of similar threads. Be aware that none of the following commands are correct for the purpose of being able to stash any specific tracked/untracked files:
git stash -p (--patch)
: select hunks manually, excluding untracked filesgit stash -k (--keep-index)
: stash all tracked/untracked files and keep them in the working directorygit stash -u (--include-untracked)
: stash all tracked/untracked filesgit stash -p (--patch) -u (--include-untracked)
: invalid commandCurrently, the most reasonable method to be able to stash any specific tracked/untracked files is to:
I wrote a simple script for this procedure in an answer to another question, and there are steps for performing the procedure in SourceTree here.
When you try to switch between two branches, this situation occurs.
Try to add the files using "
git add filepath
".Later execute this line