Earlier quoted context omitted.
Also, if you can rename all these opaque commands to be more user friendly :) even if this means adding more commands, I think it’s worth it. “Rebase” should be the first victim
Alas, one of our key principles is to not hide or rename anything in Git, so your knowledge from using Git on the command line transfers to and from Sublime Merge.
Show HN: Sublime Merge – A Git client from the makers of Sublime Text
111–120 of 362 posts
Re: Show HN: Sublime Merge – A Git client from the makers of Sublime Text
#112Earlier quoted context omitted.
Alas, one of our key principles is to not hide or rename anything in Git, so your knowledge from using Git on the command line transfers to and from Sublime Merge.
Are UI translations possible? If so, and someone can replace "Rebase" in the translation with another word, it's possible. Bonus if the other strings contain placeholders e.g. "Interactive #{rebase|ucfirst}" to reduce the changes. Bravo Jon, SourceTree has been sucking more and more recently, and as a Windows & Mac user I'm looking forward to trying this out.
Re: Show HN: Sublime Merge – A Git client from the makers of Sublime Text
#113Re: Show HN: Sublime Merge – A Git client from the makers of Sublime Text
#114EDIT: Ok I found out it just takes the SSH key from ~/.ssh
But now it complains about C:\\Program Files\\Sublime Merge \\ssh-askpass-sublime.exe missing.
Re: Show HN: Sublime Merge – A Git client from the makers of Sublime Text
#115Hi HN - Jon Skinner here, I made Sublime Text and Sublime Merge, alongside the rest of the Sublime HQ programming team - Will, Dylan and Benjamin. Let me know if you have any questions! Edit: there's also the announcement blog post, at https://www.sublimetext.com/blog/articles/sublime-merge
Re: Show HN: Sublime Merge – A Git client from the makers of Sublime Text
#116For me the one and only GUI for Git, is GitUp: https://gitup.co .
GitUp is cool, I particularly love the graph view. It has almost no functionality though. You can't three-way-merge and resolve conflicts in it, nor browse the file tree for any given commit, nor compare any two commits.
Re: Show HN: Sublime Merge – A Git client from the makers of Sublime Text
#117For my needs, GitX (rowanj fork) is still unbeat: http://rowanj.github.io/gitx/ It has the exact right amount of UI complementing the command line, and some delightful features, e.g. amending the last commit is possible via a checkbox below the commit message. What I don't like about Sublime and now Sublime Merge, is the unusual way of setting preferences by editing files. I understand that hacking in a JSON file has…
Re: Show HN: Sublime Merge – A Git client from the makers of Sublime Text
#118Earlier quoted context omitted.
Awesome stuff, I'm loving it! I guess it's time do finally ditch GitKraken and SourceTree (: I have a couple questions: - Do you have a plan to add git flow integration? And what about interactive rebases? - Please, please, allow free users to use dark theme as well! Sublime Text license was really great, why add such a small change?
> Do you have a plan to add git flow integration? What does that mean? Isn't git flow just a branching model?
git flow init = git init; git branch develop; git checkout develop; ```
``` git flow feature start add login page = git branch develop feature/add-login-page; git checkout feature/add-login-page; ```
``` git flow feature finish = git checkout develop; git merge develop feature/add-login-page; git branch -d feature/add-login-page; ```
Re: Show HN: Sublime Merge – A Git client from the makers of Sublime Text
#119Doesn't scale on HiDPI on Linux. Increasing font size only makes a part of the app readable and there is no zoom in/zoom out functionality that I could find. :(
I run Sublime Merge on high dpi screen under Linux every day FWIW.
Re: Show HN: Sublime Merge – A Git client from the makers of Sublime Text
#120Hi HN - Jon Skinner here, I made Sublime Text and Sublime Merge, alongside the rest of the Sublime HQ programming team - Will, Dylan and Benjamin. Let me know if you have any questions! Edit: there's also the announcement blog post, at https://www.sublimetext.com/blog/articles/sublime-merge
Congratulations for launching another promising product Jon. I tried it on Linux and couldn't figure out a way to scale the interface on a higher resolution screen. Increasing the font size only scales half of the UI. Is there any hidden setting to scale or zoom in/out?
Go to Preferences > Edit Settings, then add a new setting to the dict: `"dpi_scale": 2.0` (or whatever float value works for you)
I think you need to restart Sublime Merge then.