Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

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.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3351612
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T01:55:48+00:00 2026-05-18T01:55:48+00:00

I use Git on my 2 Macs, which each have a different executable path

  • 0

I use Git on my 2 Macs, which each have a different executable path (one is homebrew, one is make/install’d). I also use Git via Tramp mode.

So basically I want this, in pseudo code:

if home mac:
    (setq magit-git-executable "~/Projects/homebrew/bin/git")
else if work mac:
    (setq magit-git-executable "/usr/local/git/bin/git")
else [if in tramp mode]:
    (setq magit-git-executable "git") ;; Linux can work this out so don't need a full path

This would all work fine as the last clause if Emacs would respect my setenv("PATH") configuration, but it doesn’t seem to.

Is there a good way to solve this in Elisp so my emacs.d can remain portable between machines? Failing that, is it possible to set a variable just when I’m editing a file via tramp?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-18T01:55:48+00:00Added an answer on May 18, 2026 at 1:55 am

    It’s going to be tricky if you insist on magit-git-executable taking one value if you’re in a Tramp buffer and another value if not. It would be easier to leave magit-git-executable at its default value of "git", and adjust your exec-path depending on which machine you’re on.

    How do you distinguish your machines? By name? If so, then maybe something like this:

    (require 'cl)
    (loop for (name . dir) in '(("home.local" . "~/Projects/homebrew/bin")
                                ("work.local" . "/usr/local/git/bin"))
          if (string= (system-name) name)
          do (push dir exec-path))
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

We use git to manage our code, and just create one tag when release
I like to use git on cygwin, but the only downside I have is
How often should you use git-gc? The manual page simply says: Users are encouraged
I frequently use git stash and git stash pop to save and restore changes
For personal projects I use Git for SCM, but at work we use TFS.
I want to use git as a local repository against a remote SVN repository.
I want to use git to allow me to work on several features in
I'd like to use git to record all the changes to a file. Is
I'm thinking of asking my students to use git for pair programming. Because student
'''use Jython''' import shutil print dir(shutil) There is no, shutil.move, how does one move

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.