Сижу в ветке «trackmarks_no_intersections». Делаю git pull. Он пишет:
remote: Counting objects: 26, done.
remote: Compressing objects: 100% (17/17), done.
remote: Total 17 (delta 15), reused 0 (delta 0)
Unpacking objects: 100% (17/17), done.
From ssh://git.code.sf.net/p/audigger/code
440d6e9..7b45cf9 trackmarks_no_intersections -> origin/trackmarks_no_intersections
There is no tracking information for the current branch.
Please specify which branch you want to merge with.
See git-pull(1) for details
git pull <remote> <branch>
If you wish to set tracking information for this branch you can do so with:
git branch --set-upstream-to=origin/<branch> trackmarks_no_intersections
То есть, коммиты для этой ветки он забрал, но мержить «7b45cf9» в мою локальную ветку не стал.
Ну я тогда делаю git pull origin trackmarks_no_intersections, он пишет:
From ssh://git.code.sf.net/p/audigger/code
* branch trackmarks_no_intersections -> FETCH_HEAD
Updating 440d6e9..7b45cf9
Fast-forward
src/gui/MarkGUI.h | 96 ++++++++++++++++++++-----------
src/gui/MarksInterval.h | 4 +--
src/gui/Selection.cpp | 14 ++++-----
src/gui/Selection.h | 7 +++--
src/gui/WindowMain.cpp | 4 +--
6 files changed, 135 insertions(+), 193 deletions(-)
А почему сразу-то нельзя было смержить?