Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#11 - .git directory handling #15

Merged
merged 2 commits into from Mar 20, 2012
Merged

Conversation

ChrisWay
Copy link
Contributor

Added handling if the user selects a .git directory and also default to the user's My Documents folder when first choosing "Browse Repository".

How should the case be handled if the user selects a non git directory (so monitoring is started), changes to a .git directory and then creates a git repo in the original dir that is being monitored? Currently the graph will switch back the monitored dir, not likely to happen but you never know! Should the monitoring be aborted when choosing an existing git repo or is the current behavior correct?

…fault directory picker to the user's My Documents folder.
…to the starting one if they browse for another repository.
var folderName = Path.GetDirectoryName(path) ?? "";
if (folderName.Equals(".git", StringComparison.OrdinalIgnoreCase))
//If we are passed a .git directory, just return it straightaway
if (path.EndsWith(".git", StringComparison.OrdinalIgnoreCase))
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Probably better to use the path methods here. For example, in theory it could get a path with a trailing slash (though not sure if that'll actually happen).

Path.GetFolderName(path)

Or something like that should do the trick. :)

@haacked
Copy link
Owner

haacked commented Mar 20, 2012

Apart from the one change I suggested, this looks great. Thanks! I'm going to merge it in now anyways.

haacked added a commit that referenced this pull request Mar 20, 2012
@haacked haacked merged commit b413038 into haacked:master Mar 20, 2012
@haacked
Copy link
Owner

haacked commented Mar 20, 2012

I forgot to comment on your question. If I understand correctly, the sequence is:

  1. Open up c:\foo which does not contain a git repo.
  2. Then use the file browser to select c:\bar\ which does have a git directory.
  3. Then runs git init in c:\foo and SeeGit starts monitoring c:\foo again?

If so, that's definitely a bug. When we use the folder browser to select a folder, we should dispose all previous file monitors.

@ChrisWay
Copy link
Contributor Author

Thanks Phil, I'll make that change tonight and that sequence is correct. Presumably to cancel the file monitors you need to hold on to the IDisposable that is returned from Subscribe and then call Dispose?

@haacked
Copy link
Owner

haacked commented Mar 20, 2012

Yeah, it looks that way.

On Tue, Mar 20, 2012 at 12:08 AM, Chris Way <
reply@reply.github.com

wrote:

Thanks Phil, I'll make that change tonight and that sequence is correct.
Presumably to cancel the file monitors you need to hold on to the
IDisposable that is returned from Subscribe and then call Dispose?


Reply to this email directly or view it on GitHub:
#15 (comment)

ChrisWay added a commit to ChrisWay/SeeGit that referenced this pull request Mar 20, 2012
haacked#15. Using DirectoryInfo as Path doesn't have a simple way of grabbing the last dir in a path.
ChrisWay added a commit to ChrisWay/SeeGit that referenced this pull request Mar 20, 2012
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants