Launch via command line for current working directory
See original GitHub issueCommand line integration
I’d like to be able to launch the commit/changes UI for my current working directory from the command line.
E.g.,
C:\repos\my project> GitHubDesktop
# Launches GitHub Desktop to the Changes UI for me to commit my changes
My typical workflow is to do most git operations from the command line but launch a GUI for commits since GUIs are quicker for selecting specific files and lines for the commit.
I use GitExtensions right now which lets me launch gitex commit
to quickly commit files in my working directory. I’d like to replace GitExtensions with GitHub Desktop in this same workflow.
Issue Analytics
- State:
- Created 6 years ago
- Comments:5 (3 by maintainers)
Top Results From Across the Web
Windows shell command to get the full path to the current ...
In a Windows command prompt, chdir or cd will print the full path of the current working ...
Read more >How do I set an executable's working directory via ...
To explicitly set the working directory, a PowerShell solution would be to use the Start-Process cmdlet with the -WorkingDirectory parameter ...
Read more >CMD: 11 basic commands you should know (cd, dir, mkdir, etc.)
The first command from the list is CD (Change Directory). This command enables you to change the current directory or, in other words,...
Read more >Programmer's Survival Guide for Windows - CMD Shell, ...
Each CMD session maintains a so-called current drive and current working directory, which is shown in the prompt in the form of ...
Read more >Windows Command Prompt (cmd) | cli - Harsh Kapadia
Run files on cmd. Go the the directory and type file_name.ext . cmd uses the default program for that file type to open...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Thanks! That’s mostly what I want. I do have a couple nitpicks based on a few minutes of testing that though:
github .
from a sub-directory in my git clone opens a prompt to add a new local repository instead of detecting the local repository I’ve already added.github
(without the dot) should have the same behavior asgithub .
IMOTry
github .
😃