How to export issues on Gitlab?
Maybe the question is not belongs to here, but I will try.
Is there an option to export all issues / TODOS to csv or pdf file?
i was looking for it but can't find anything.
gitlab issue-tracking
add a comment |
Maybe the question is not belongs to here, but I will try.
Is there an option to export all issues / TODOS to csv or pdf file?
i was looking for it but can't find anything.
gitlab issue-tracking
You are right, your question should not belong in here.
– Andrejs Cainikovs
May 1 '17 at 12:58
Andrejs is probably right, it's off-topic. You can export to CVS if you are using enterprise edition 9.0 or later. docs.gitlab.com/ee/user/project/issues/csv_export.html
– Dan Lowe
May 1 '17 at 13:08
I was able to export issues on gitlab.com CE and now the export button just disappeared. Did this feature got disabled on CE? Am I missing something?
– MatheusJardimB
Jul 14 '17 at 1:13
I'm voting to close this question as off-topic because it's about whether specific website functionality is available.
– l0b0
Nov 4 '17 at 4:16
I created a system for access api of gitlab-ce and export issues. Is open source! You can put your server name of gitlab, your access token and selected your group and the button for export to csv. Sample! gitlab-ce-export-to-csv.github.io github.com/gitlab-ce-export-to-csv/…
– Nataniel Paiva
Apr 13 '18 at 14:59
add a comment |
Maybe the question is not belongs to here, but I will try.
Is there an option to export all issues / TODOS to csv or pdf file?
i was looking for it but can't find anything.
gitlab issue-tracking
Maybe the question is not belongs to here, but I will try.
Is there an option to export all issues / TODOS to csv or pdf file?
i was looking for it but can't find anything.
gitlab issue-tracking
gitlab issue-tracking
edited Feb 4 at 21:29
Diogo Gomes
1486
1486
asked May 1 '17 at 12:56
Or PeretsOr Perets
124217
124217
You are right, your question should not belong in here.
– Andrejs Cainikovs
May 1 '17 at 12:58
Andrejs is probably right, it's off-topic. You can export to CVS if you are using enterprise edition 9.0 or later. docs.gitlab.com/ee/user/project/issues/csv_export.html
– Dan Lowe
May 1 '17 at 13:08
I was able to export issues on gitlab.com CE and now the export button just disappeared. Did this feature got disabled on CE? Am I missing something?
– MatheusJardimB
Jul 14 '17 at 1:13
I'm voting to close this question as off-topic because it's about whether specific website functionality is available.
– l0b0
Nov 4 '17 at 4:16
I created a system for access api of gitlab-ce and export issues. Is open source! You can put your server name of gitlab, your access token and selected your group and the button for export to csv. Sample! gitlab-ce-export-to-csv.github.io github.com/gitlab-ce-export-to-csv/…
– Nataniel Paiva
Apr 13 '18 at 14:59
add a comment |
You are right, your question should not belong in here.
– Andrejs Cainikovs
May 1 '17 at 12:58
Andrejs is probably right, it's off-topic. You can export to CVS if you are using enterprise edition 9.0 or later. docs.gitlab.com/ee/user/project/issues/csv_export.html
– Dan Lowe
May 1 '17 at 13:08
I was able to export issues on gitlab.com CE and now the export button just disappeared. Did this feature got disabled on CE? Am I missing something?
– MatheusJardimB
Jul 14 '17 at 1:13
I'm voting to close this question as off-topic because it's about whether specific website functionality is available.
– l0b0
Nov 4 '17 at 4:16
I created a system for access api of gitlab-ce and export issues. Is open source! You can put your server name of gitlab, your access token and selected your group and the button for export to csv. Sample! gitlab-ce-export-to-csv.github.io github.com/gitlab-ce-export-to-csv/…
– Nataniel Paiva
Apr 13 '18 at 14:59
You are right, your question should not belong in here.
– Andrejs Cainikovs
May 1 '17 at 12:58
You are right, your question should not belong in here.
– Andrejs Cainikovs
May 1 '17 at 12:58
Andrejs is probably right, it's off-topic. You can export to CVS if you are using enterprise edition 9.0 or later. docs.gitlab.com/ee/user/project/issues/csv_export.html
– Dan Lowe
May 1 '17 at 13:08
Andrejs is probably right, it's off-topic. You can export to CVS if you are using enterprise edition 9.0 or later. docs.gitlab.com/ee/user/project/issues/csv_export.html
– Dan Lowe
May 1 '17 at 13:08
I was able to export issues on gitlab.com CE and now the export button just disappeared. Did this feature got disabled on CE? Am I missing something?
– MatheusJardimB
Jul 14 '17 at 1:13
I was able to export issues on gitlab.com CE and now the export button just disappeared. Did this feature got disabled on CE? Am I missing something?
– MatheusJardimB
Jul 14 '17 at 1:13
I'm voting to close this question as off-topic because it's about whether specific website functionality is available.
– l0b0
Nov 4 '17 at 4:16
I'm voting to close this question as off-topic because it's about whether specific website functionality is available.
– l0b0
Nov 4 '17 at 4:16
I created a system for access api of gitlab-ce and export issues. Is open source! You can put your server name of gitlab, your access token and selected your group and the button for export to csv. Sample! gitlab-ce-export-to-csv.github.io github.com/gitlab-ce-export-to-csv/…
– Nataniel Paiva
Apr 13 '18 at 14:59
I created a system for access api of gitlab-ce and export issues. Is open source! You can put your server name of gitlab, your access token and selected your group and the button for export to csv. Sample! gitlab-ce-export-to-csv.github.io github.com/gitlab-ce-export-to-csv/…
– Nataniel Paiva
Apr 13 '18 at 14:59
add a comment |
1 Answer
1
active
oldest
votes
As other users have commented, CSV export is built into paid versions of gitlab:
https://docs.gitlab.com/ee/user/project/issues/csv_export.html
However that does have issues - it emails the report to you and hence gitlab limit it to 20MB in size, and depending on the version of gitlab you're using some of the fields may not be present in the export.
Thankfully gitlab has a good API, so you can extract issues via the issues API instead, and once you have that data it's very simple to output it in CSV format.
I wrote a very simple perl script that does this, it's available here:
https://gitlab.com/emobix/get-all-gitlab-issues-as-csv
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f43719447%2fhow-to-export-issues-on-gitlab%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
As other users have commented, CSV export is built into paid versions of gitlab:
https://docs.gitlab.com/ee/user/project/issues/csv_export.html
However that does have issues - it emails the report to you and hence gitlab limit it to 20MB in size, and depending on the version of gitlab you're using some of the fields may not be present in the export.
Thankfully gitlab has a good API, so you can extract issues via the issues API instead, and once you have that data it's very simple to output it in CSV format.
I wrote a very simple perl script that does this, it's available here:
https://gitlab.com/emobix/get-all-gitlab-issues-as-csv
add a comment |
As other users have commented, CSV export is built into paid versions of gitlab:
https://docs.gitlab.com/ee/user/project/issues/csv_export.html
However that does have issues - it emails the report to you and hence gitlab limit it to 20MB in size, and depending on the version of gitlab you're using some of the fields may not be present in the export.
Thankfully gitlab has a good API, so you can extract issues via the issues API instead, and once you have that data it's very simple to output it in CSV format.
I wrote a very simple perl script that does this, it's available here:
https://gitlab.com/emobix/get-all-gitlab-issues-as-csv
add a comment |
As other users have commented, CSV export is built into paid versions of gitlab:
https://docs.gitlab.com/ee/user/project/issues/csv_export.html
However that does have issues - it emails the report to you and hence gitlab limit it to 20MB in size, and depending on the version of gitlab you're using some of the fields may not be present in the export.
Thankfully gitlab has a good API, so you can extract issues via the issues API instead, and once you have that data it's very simple to output it in CSV format.
I wrote a very simple perl script that does this, it's available here:
https://gitlab.com/emobix/get-all-gitlab-issues-as-csv
As other users have commented, CSV export is built into paid versions of gitlab:
https://docs.gitlab.com/ee/user/project/issues/csv_export.html
However that does have issues - it emails the report to you and hence gitlab limit it to 20MB in size, and depending on the version of gitlab you're using some of the fields may not be present in the export.
Thankfully gitlab has a good API, so you can extract issues via the issues API instead, and once you have that data it's very simple to output it in CSV format.
I wrote a very simple perl script that does this, it's available here:
https://gitlab.com/emobix/get-all-gitlab-issues-as-csv
answered Jan 1 at 3:02
JosephHJosephH
31.7k18114137
31.7k18114137
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f43719447%2fhow-to-export-issues-on-gitlab%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
You are right, your question should not belong in here.
– Andrejs Cainikovs
May 1 '17 at 12:58
Andrejs is probably right, it's off-topic. You can export to CVS if you are using enterprise edition 9.0 or later. docs.gitlab.com/ee/user/project/issues/csv_export.html
– Dan Lowe
May 1 '17 at 13:08
I was able to export issues on gitlab.com CE and now the export button just disappeared. Did this feature got disabled on CE? Am I missing something?
– MatheusJardimB
Jul 14 '17 at 1:13
I'm voting to close this question as off-topic because it's about whether specific website functionality is available.
– l0b0
Nov 4 '17 at 4:16
I created a system for access api of gitlab-ce and export issues. Is open source! You can put your server name of gitlab, your access token and selected your group and the button for export to csv. Sample! gitlab-ce-export-to-csv.github.io github.com/gitlab-ce-export-to-csv/…
– Nataniel Paiva
Apr 13 '18 at 14:59