Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I install git-subtree with Cygwin in Windows 7?

I'm struggling to install git-subtree with Cygwin and there hasn't been any good tutorials online focused on building from source in Windows. Have you ever had this issue, and what is the best strategy to tackle it?

like image 667
dot_zero Avatar asked Nov 24 '14 16:11

dot_zero


People also ask

Can I use Git with Cygwin?

Git can be installed in Cygwin along with it. When installing Cygwin it will ask some extra packages, there the Git option can be included. This is the only way to install Git in Cygwin.

Which of the following executables is used to install Git on Windows Cygwin msysGit?

msysGit is the development environment to compile Git for Windows.

How do I install Git on my computer?

To install Git, navigate to your command prompt shell and run the following command: sudo dnf install git-all . Once the command output has completed, you can verify the installation by typing: git version .


1 Answers

git-subtree is not part of a package. However, like gitk you can manually install it

wget rawgit.com/git/git/master/contrib/subtree/git-subtree.sh
install git-subtree.sh /bin/git-subtree
like image 85
6 revs, 4 users 62% Avatar answered Sep 20 '22 05:09

6 revs, 4 users 62%