开发者

Is git stable on Windows? [duplicate]

开发者 https://www.devze.com 2023-02-21 14:12 出处:网络
This question already has answers here: Closed 11 years ago. 开发者_开发问答 Possible Duplicate: What are currently the problems with Git on Windows
This question already has answers here: Closed 11 years ago. 开发者_开发问答

Possible Duplicate:

What are currently the problems with Git on Windows

Recently, I've been considering switching our source control system from svn to git so that we can leverage the feature of distributability. After I did some investigations. I found that, it seems we don't have much choice on running git on the Windows. Only one option that balances on both side of learning curve and administrative effort is msysGit. Unfortunately, It's still on the preview version so far.

Do I miss something? Or, is there a better alternative?


We use mSysGit and have been for about a year. We've run into some bugs, but no blockers -- the repository has always been pretty solid; the bugs are all in the front-end tools.

The two bugs we've run into are:

  • The GUI apps (git-gui and gitk) both lock up from time to time, usually several times a day. The lock-ups only happen when you're trying to do something with the repository: stage a change, do a commit, check out a branch, etc. This seems to be a deadlock in the communication between the GUI app and the command-line process that actually does the work. When the GUI stops responding, all you have to do is kill it and start it again. I have never seen this cause any data corruption -- it seems to be just the GUI app that's locking up; the command-line app either finishes its work or doesn't start. This is harmless but annoying, and apparently the mSysGit maintainers can't reproduce it (though I've seen it on every computer I've tried Git on).

  • Occasionally, when you check out a different branch, Git will silently fail to create all the new branch's files on disk; so if you look at the status, you'll see a "deleted" file (I don't think I've ever seen more than one or two) ready to be staged. I've never run into this from the command line, so I don't know if the checkout is giving some warning, but if you check out from the GUI there's no sign that anything is wrong unless you rescan for unstaged changes. This happens fairly rarely (perhaps once a week), but you'll notice it when you're staging your changes, before it can do any damage. The file is still there in the repository; you just need to reset (or revert changes on that file) to put it back in your working copy.

Both are merely annoyances; you don't need to be especially vigilant for them, you just need the patience to clean up when they happen.

0

精彩评论

暂无评论...
验证码 换一张
取 消