Apologies if its a newbie like question, I am relatively new to gitHub (using SVN for a long time)
This may be related to a similar post (see "going to a commit then returning to the present" ) but I am hoping for a quick response to the following:
I pulled a specific commit off master from my git repository using
git checkout a1b2c3
Then I created a branch off that specific commit using
git branch specificCommitBranchName a1b2c3
Then, I did some work on those files.
If I do git push and commit my changes (or use git GUI, whatever) where do those commits go? Does it go to that commit? does it only commit locally (and not to the remote repo / that commit ? ) to master? I'd like to commit my changes for now basically, then eventually re-merge my changes with the latest master HEAD.
I appreciate your answers, thanks!