I have emacs egg plugin version 1.0.0 with me. I have git 1.7.4 version installed. I would like know how to push/pull changes to/from the repository. Any idea how to do that?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
1.0.0 means you have byplayer’s egg version, not the original one from bogolisk.
However, the latter (and older) egg wiki page mentions:
egg-log-buffer-push-to-remote: remote upload: update the tracking target of ref under the cursor. If the ref under the cursor wasn’t a remote tracking branch, the command will prompt for remote and target names.egg-log-buffer-fetch-remote: remote download: download and update the ref under the cursor(git fetch)Those functions are accessible through:
C-x v l:
egg-logshows HEAD’s history.With a prefix (C-u C-x v l), show history of all refs (
git log).Make sure, though, that your
git.exeis in your Emacs path (ExecPath), not just yourPATH.To highlight what the comments are mentioning:
HEADof a remote branch — i.e. a branch fetched in the ‘remotes’ namespace — to theHEADof the current local branch).So:
The last two operations are what constitutes a pull: fetch + merge.