Tagged Questions
The magit tag has no wiki summary.
5
votes
0answers
164 views
Reload all open files in emacs after git branch change [closed]
Possible Duplicate:
How can I get Emacs to revert all unchanged buffers when switching branches in git?
I have more than 15 files of the same project open in emacs. When i change the branch ...
3
votes
1answer
188 views
How do I merge branches with Magit using a new commit object?
I can’t seem to get my merges intact with Magit for Emacs without squashing them into the current branch consistently. Sometimes a new commit object is created after the merge (which is what I want), ...
2
votes
3answers
254 views
emacs magit diff highlighting
I'm just getting started with magit.
I really like it, except that the diff viewer is really annoying to me. The chunk highlighting makes no sense because as I scroll around the cursor moves with the ...
1
vote
2answers
189 views
How to Use Magit Even More Effectively?
After an several-hour trial upon git using shell, I switched to magit
It's pretty neat and efficient: I don't need to type "git" to invoke a git command anymore!
But I still found one drawback ...
0
votes
0answers
34 views
M-x magit-status starts Meld befire magit
Just installed magit on my ubuntu. The problem is when I want to open it and type in M-x magit-status - I have Meld window open and show me all the changes as if I asked to diff them (but I did not). ...
0
votes
1answer
104 views
Getting viper-mode to play well with magit-key-mode
I use viper-mode in emacs and magit with magit-key-mode. Problem I am having is that I don't want viper to load in magit-key-mode as I then must hit Ctl-z to get into emacs mode before selecting a key ...
0
votes
1answer
105 views
Modifying a custom defun to not conflict with Magit
I use the following smart-tab defun in my .emacs for either completion on a word or just to do a standard tab:
(global-set-key [(tab)] 'smart-tab)
(defun smart-tab ()
"This smart tab is minibuffer ...