Search code examples
gitmergegit-merge

Merge HEAD to master


I have problems with merging HEAD to master, when executing git merge master - I get "already updated" Help please, thanks

* 0b3b69b - (35 минут назад) chart on exchange page - Little Whale (HEAD)
* 8f52f4b - (6 часов назад) exchange modul works correctly - Little Whale
* a6c836e - (2 дня назад) commit for checkout on other commit - Little Whale (master)
* 9e59520 - (2 дня назад) pie chart renders correctly - Little Whale
* f57ace2 - (2 дня назад) input group in portfolio page are fixed and works correctly - Little Whale
* 3a45fc1 - (3 дня назад) exchange block implemented - Little Whale
* 75f7ca9 - (4 дня назад) portfolio was done - Little Whale
* 5ea03ec - (5 дней назад) currency block and pie chart implemented - Little Whale
* 8913e2c - (5 дней назад) Initialize project using Create React App - Little Whale

Solution

  • To expand on eftshift0's comment, the full command to use would be:

    git log --decorate --online --graph --all --branches
    

    You would then be able to see where HEAD is positioned, relative to master.

    As LeGEC comments, a more focused command would be:

    git log --decorate --online --graph HEAD master