Wakanda v11's git extension install broke Wakanda v10's git functionality - wakanda

I have both v11 and v10 Enterprise Studio/Server installed on my Mac. When I launched v11 for the first time, I installed the Git extension through the extension manager. This broke Git in v10.
Launching v10, right-clicking a file, and opening a solution in v10 gives the below errors.
Git options are now grayed out in the Studio v10 Git menu. I've uninstalled v10 and reinstalled it, and uninstalled Git 2.6.4 and reinstalled it to no avail.
Git works fine in v11 but I'm not ready to make the switch because my application does not run in v11.
Git is installed to /usr/local/bin/git, but is there another directory that would hold Git or Wakanda-Git configuration files?
I am thinking I need to blow away whatever changes Wakanda Studio v11's extension manager made to my Wakanda/Git setup to fix Git in v10.

Remove the git folder inside your documents/Wakanda/extensions/ and restart Wakanda Studio 10 I think it should fix it.

Related

Download the older version git for windows

How can I download the git 2.24.1 exe for windows from this link, but I'm not actually sure what to do with them to install.
Never mind. Found it here the Git old version
https://github.com/git-for-windows/git/releases/tag/v2.24.1.windows.2

Eclipse oxygen hangs on every git operation

I had a work-blocking problem with my Eclipse Oxygen IDE on Windows 10. After using SVN for several months I switched to a project that requires git usage. I already had the necessary plugin (EGit) in place.
After every git-related operation the Eclipse froze: team->share, import -> Projects from Git etc.
I tried the following:
reinstall the EGit plugin,
clean the workspace I was using
start over with the new, clean workspace
but nothing helped...
It finally turned out it was the fault of my git installation on windows!
I was using version 2.6.x, because I wasn't using git for a long time due to SVN projects. After upgrading windows installation to 2.16.x Eclipse freezes no longer happen.

How to install GitFlow for Windows

Is there a way to install Git Flow on Windows? I tried this tutorial but I'm unable to understand it.
I already have Git Installed on my PC, can I use GitFlow from my current Git installation?
Use the recently released Git for Windows 2.5.3 which now ships with git-flow (the AVH edition of it).
If you have Sourcetree OR if you install Sourcetree, you can find GitFlow options there. This is one of the easiest way to use GitFlow.
Once you active GitFlow from their (shown in the above screenshot), you can use all GitFlow commands from the terminal as well.

Git not working. Installed XCode

Using an iMac running OSX 10.8.5 (Mountain Lion). It's a work computer and can't upgrade to a higher OS version at the moment for various reasons.
I tried installing XCode so that I can use Git but it isn't working.
In terminal I run:
git --version
and get this response:
-bash: git: command not found
What am I doing wrong?
You need to install git separately:
http://burnedpixel.com/blog/setting-up-git-and-github-on-your-mac/
Source control was only introduced into Xcode 4. This however does not mean git is installed onto your system as part of downloading Xcode. It just means that you can use some git features in a Xcode project by pressing the source control button at the top. To install the actual git go here.
I'm don't know why it appears to be so, but it looks like Git still isn't installed on your computer. Another way to check if Git is installed is by using the which git command. If that still doesn't help, install it separately. Download Git for Mac.

GitHub for Mac no longer installs Git message

I have been using the Github for Mac app and it works great.
This morning while launching the Github app I get the following message:
GitHub for Mac no longer installs Git
OS X 10.9 and later includes Git, so GitHub for Mac will no longer
install Git as part of its command line tools.
The version of Git you have installed through GitHub for Mac is no
longer supported. It's recommended that you uninstall it as soon as
possible.
[ Uninstall Git Later] [ Uninstall Git Now ]
Should I uninstall Git? Will I lose my git configs ?
Yes, you can uninstall Git (the one oncluded by GitHub for Mac)
You won't loose any configuration, unless you have been fiddling with git config --system.
Only the "system" config would have been modifying the installation folder of that embedded Git.

Resources