-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Mini launch bash #2852
Open
daxgames
wants to merge
10
commits into
cmderdev:master
Choose a base branch
from
daxgames:mini_launch_bash
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Mini launch bash #2852
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
a4ea326
⬆️ Update dependencies (git-for-windows v2.40.0.windows.1, clink v1.4…
daxgames 5e3b703
Merge pull request #12 from daxgames/update-vendor
daxgames 47258fb
Merge branch 'master' of https://github.com/cmderdev/cmder
3805184
add bash launch from Cmder mini
0c86e97
CHANGELOG.md
2b92a85
CHANGELOG.md
f4fe78f
cleanup
276deeb
cleanup
daxgames 8b5f883
add shebang
daxgames d9d99a5
cleanup
daxgames File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
@echo off | ||
|
||
if not defined CMDER_ROOT ( | ||
if defined ConEmuDir ( | ||
for /f "delims=" %%i in ("%ConEmuDir%\..\..") do ( | ||
set "CMDER_ROOT=%%~fi" | ||
) | ||
) else ( | ||
for /f "delims=" %%i in ("%~dp0\..") do ( | ||
set "CMDER_ROOT=%%~fi" | ||
) | ||
) | ||
) | ||
|
||
if defined ConEmuDir ( | ||
set "gitCommand=--command=%ConEmuBaseDirShort%\conemu-msys2-64.exe" | ||
) | ||
|
||
if exist "%CMDER_ROOT%\vendor\git-for-windows" ( | ||
set "PATH=%CMDER_ROOT%\vendor\git-for-windows\usr\bin;%PATH%" | ||
set "gitCmd=%CMDER_ROOT%\vendor\git-for-windows\git-cmd.exe" | ||
set "bashCmd=%CMDER_ROOT%\vendor\git-for-windows\usr\bin\bash.exe" | ||
) else if exist "%ProgramFiles%\git" ( | ||
set "PATH=%ProgramFiles%\git\usr\bin;%PATH%" | ||
set "gitCmd=%ProgramFiles%\git\git-cmd.exe" | ||
set "bashCmd=%ProgramFiles%\git\usr\bin\bash.exe" | ||
if not exist "%ProgramFiles%\git\etc\profile.d\cmder_exinit.sh" ( | ||
echo Run 'mklink "%ProgramFiles%\git\etc\profile.d\cmder_exinit.sh" "%CMDER_ROOT%\vendor\cmder_exinit"' in 'cmd::Cmder as Admin' to use Cmder with external Git Bash | ||
echo. | ||
echo or | ||
echo. | ||
echo Run 'echo "" ^> "%ProgramFiles%\git\etc\profile.d\cmder_exinit.sh"' in 'cmd::Cmder as Admin' to disable this message. | ||
) | ||
) else if exist "%ProgramFiles(x86)%\git" ( | ||
set "PATH=%ProgramFiles(x86)%\git\usr\bin;%PATH%" | ||
set "gitCmd=%ProgramFiles(x86)%\git\git-cmd.exe" | ||
set "bashCmd=%ProgramFiles(x86)%\git\usr\bin\bash.exe" | ||
if not exist "%ProgramFiles(x86)%\git\etc\profile.d\cmder_exinit.sh" ( | ||
echo Run 'mklink "%ProgramFiles^(x86^)%\git\etc\profile.d\cmder_exinit.sh" "%CMDER_ROOT%\vendor\cmder_exinit"' in 'cmd::Cmder as Admin' to use Cmder with external Git Bash | ||
echo. | ||
echo or | ||
echo. | ||
echo Run 'echo "" ^> "%ProgramFiles^(x86^)%\git\etc\profile.d\cmder_exinit.sh"' in 'cmd::Cmder as Admin' to disable this message. | ||
) | ||
) | ||
|
||
"%gitCmd%" --no-cd %gitCommand% "%bashCmd%" --login -i |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Would you like to move some of the gitignores here to the Vagrant + Packer branch?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It is my opinion this vranch should be merged with master. I see no reason to maintain a second branch.