할 수 있습니까 git merge
커밋없이을 있습니까?
"man git merge"는 다음과 같이 말합니다.
With --no-commit perform the merge but pretend the merge failed and do not autocommit,
to give the user a chance to inspect and further tweak the merge result before
committing.
하지만 사용하려고하면 git merge
와 --no-commit
그것을 여전히 자동 커밋. 내가 한 일은 다음과 같습니다.
$> ~/git/testrepo$ git checkout master
Switched to branch 'master'
$> ~/git/testrepo$ git branch
* master
v1.0
$> ~/git/testrepo$ git merge --no-commit v1.0
Updating c0c9fd2..18fa02c
Fast-forward
file1 | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
$> ~/git/testrepo$ git status
# On branch master
# Your branch is ahead of 'origin/master' by 1 commit.
#
nothing to commit (working directory clean)
이후 git log
에는 v1.0 브랜치의 모든 커밋이 마스터로 병합 된 것으로 나타납니다.