Hi,
I have made a git commit but I have not pushed. And I am now working on a new bug fix, which should not touch the same files as the first commit.
Is it possible for me to commit this bug fix AND git push only this commit?
Thank you.
|
1
|
Hi, I have made a git commit but I have not pushed. And I am now working on a new bug fix, which should not touch the same files as the first commit. Is it possible for me to commit this bug fix AND git push only this commit? Thank you.
|
||||
|
|
|
All of the commits leading up to a particular commit are what defines that new commit. That is, if you have a master → dev → bugfix as shown in the image below:
you can push However, if you build this bugfix out as a feature branch, you'd have something that looked more like this:
You could still retroactively do that (create a new branch from Once that's complete, you can forward-port your dev branch with a simple
In practice, starting bug fixes from a branch will make this kind of thing a lot easier in general. |
||
|
|
|
|
Our shop uses personal branches extensively. Basically the process would go like this: Given that you are currently on the master branch
The above creates a branch and checks it out...this is where you put the commits that you are not ready to push. Now you should be able to make commits to the current branch without affecting the master branch. When you're ready to publish/push that one commit, just do:
and your other commits will not go to the origin repository. When you're ready to incorporate the "bug fix" into the master branch, checkout the master branch and do;
I think this answers the question, but if not, just let me know! |
||
|
|
|
|
just do another clone and push your bug fix from there. |
||
|
|
|
What you can do is move the previous commit to a (temporary) branch, and cherry-pick your new commit to the master. For example:
Then, temp_branch will contain both your new commits. You can then later pick your previous one back to master:
After doing this, your master branch will contain the same two commits as you started with, but in the opposite order. |
||
|
|