Emacs git plugin - egg

I have emacs egg plugin version 1.0.0 with me. I have git version 1.7.4 installed . I would like to know how to push / pull changes to / from the repository. Any idea how to do this?

+3
source share
1 answer

1.0.0 means that you have a version of the egg , not the original of the bogolisk .

However, the last (and older) wiki egg page mentions:

  • U egg-log-buffer-push-to-remote: remote download: refresh the ref tracking target under the cursor. If the link under the cursor was not a remote tracking branch, the command will prompt you to specify the remote and target names.
  • d egg-log-buffer-fetch-remote: : ref (git fetch)

:

C-x v l: egg-log HEAD.

(C-u C-x v l), (git log).


, git.exe Emacs (ExecPath), PATH.


, :

  • - + ( HEAD - .. , "remotes" - HEAD ).
    :
    • 'd'
    • 'm' ( ) , .

- , pull: fetch + merge.

+3

All Articles