[libgit2-glib] Update ggit_repository_set_workdir to latest git2 api
- From: Ignacio Casal Quinteiro <icq src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [libgit2-glib] Update ggit_repository_set_workdir to latest git2 api
- Date: Thu, 12 Jul 2012 17:43:11 +0000 (UTC)
commit 4d43f98d7f31a54f26959564fe028401111a55e8
Author: Ignacio Casal Quinteiro <icq gnome org>
Date: Thu Jul 12 19:44:12 2012 +0200
Update ggit_repository_set_workdir to latest git2 api
libgit2-glib/ggit-repository.c | 21 +++++++++++++--------
libgit2-glib/ggit-repository.h | 3 ++-
2 files changed, 15 insertions(+), 9 deletions(-)
---
diff --git a/libgit2-glib/ggit-repository.c b/libgit2-glib/ggit-repository.c
index 6f284ce..628bc27 100644
--- a/libgit2-glib/ggit-repository.c
+++ b/libgit2-glib/ggit-repository.c
@@ -116,7 +116,8 @@ ggit_repository_get_property (GObject *object,
static void
set_workdir (GgitRepository *repository,
- GFile *workdir)
+ GFile *workdir,
+ gboolean update_gitlink)
{
GgitRepositoryPrivate *priv;
@@ -134,7 +135,8 @@ set_workdir (GgitRepository *repository,
path = g_file_get_path (priv->workdir);
- git_repository_set_workdir (_ggit_native_get (repository), path);
+ git_repository_set_workdir (_ggit_native_get (repository),
+ path, update_gitlink);
g_free (path);
}
}
@@ -170,7 +172,7 @@ ggit_repository_set_property (GObject *object,
break;
}
case PROP_WORKDIR:
- set_workdir (repository, g_value_get_object (value));
+ set_workdir (repository, g_value_get_object (value), FALSE);
break;
case PROP_IS_BARE:
priv->is_bare = g_value_get_boolean (value);
@@ -306,7 +308,7 @@ ggit_repository_initable_init (GInitable *initable,
if (path)
{
git_repository_set_workdir (_ggit_native_get (initable),
- path);
+ path, FALSE);
}
g_free (path);
@@ -849,18 +851,21 @@ ggit_repository_get_workdir (GgitRepository *repository)
* ggit_repository_set_workdir:
* @repository: a #GgitRepository.
* @workdir: the working directory
+ * @update_gitlink: create/update gitlink in workdir
*
- * Sets the working directory of the repository.
- *
+ * Sets the working directory of the repository. If @update_gitlink is set to
+ * %TRUE "core.worktree" will be set in the config if workdir is not the parent
+ * of the .git directory).
*/
void
ggit_repository_set_workdir (GgitRepository *repository,
- GFile *workdir)
+ GFile *workdir,
+ gboolean update_gitlink)
{
g_return_if_fail (GGIT_IS_REPOSITORY (repository));
g_return_if_fail (G_IS_FILE (workdir));
- set_workdir (repository, workdir);
+ set_workdir (repository, workdir, update_gitlink);
}
/**
diff --git a/libgit2-glib/ggit-repository.h b/libgit2-glib/ggit-repository.h
index 9860f6f..f70f0b1 100644
--- a/libgit2-glib/ggit-repository.h
+++ b/libgit2-glib/ggit-repository.h
@@ -174,7 +174,8 @@ GFile *ggit_repository_get_location (GgitRepository *re
GFile *ggit_repository_get_workdir (GgitRepository *repository);
void ggit_repository_set_workdir (GgitRepository *repository,
- GFile *workdir);
+ GFile *workdir,
+ gboolean update_gitlink);
gboolean ggit_repository_is_bare (GgitRepository *repository);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]