Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
I wanted to search my company's github source website using regular expressions. is that possible in anyway?
AFAIK you would need to set that up yourself. Github has its own search syntax with qualifiers you can add, but not full regex. The api uses the same syntax as the in-browser search.
The problem is that a GitHub search is limited to the master branch of your repos.
The easiest solution is to:
clone your company's github source website
do locally a git grep, which supports basic regexp or extended POSIX regexp (git grep -E)
or a pickaxe search (git log --all -S...
or git rev-list --all|grep xxx which also allows for regexp
Related
Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed yesterday.
Improve this question
I have seen many pros and cons of both Bitbucket anf Gitlab. I would like to know if Bitbucket supports decentralized workflow like Gitlab.
I am trying to design a workflow like Development-> Master->Staging->Production. Two questions -
Is this possible in Bitbucket to create production branch independently of Master like in Gitlab.
Also, which platform provides secure workflow with minimal coding error from Dev to Production env.
Opinion on Gitlab and Bitbucket, Need to choose a platform that provides safe coding and non centralized workflow
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 9 months ago.
Improve this question
can anyone help me in generating release notes automatically in git lab. is there any way to perform this.
Kindly let me know.
Thank you
You can use the API to list all issues in a milestone, see https://docs.gitlab.com/ee/api/milestones.html#get-all-issues-assigned-to-a-single-milestone
There is no feature to create release notes from a milestone, or from annotated tags. The issue is being tracked at https://gitlab.com/gitlab-org/gitlab/issues/15563
EDIT:
some work regarding Release Notes has been implemented in 12.9: see https://docs.gitlab.com/ee/user/project/releases/#add-release-notes-to-git-tags
I have developed a Python lib to automatically generate release notes listing merge request since the last release of a GitLab repository.
The source code is here with instructions how to use it: https://github.com/vuillaut/gitlab_release_notes
You may use the online app here for a more convenient approach:
https://gitlab-release-notes.herokuapp.com/
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 4 years ago.
Improve this question
I am trying generate and add ssh key to gitlab to access my old project to my new machine please give me proper work flow thanks
Please follow the link
command for generate:
ssh-keygen -t rsa -C "your.email#example.com" -b 4096
command for copy:
pbcopy < ~/.ssh/id_rsa.pub
You must search the internet before posting
It is important that you search the internet before posting a question. Nevertheless, I have seen many new users making this mistake. Follow this link and take care of it in future.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I am new to development of web application. I need to use a open source tool (http://subgraph.com/products.html) in my website. This application works as a tool. I need to download it and work as of now. My project is to integrate this with my website and produce results as the same way the tool is working when downloading.
Questions
How to integrate it with my website and produce the same results?
I think you can't integrate it. You can't run it in command line to control it and you can't save results to file. Look for other open source tools - i.e Arachni, W3AF or maybe one of the list (Web Application Security Scaner List) can be integrated to webpage.
Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
I know you can edit a file in githubs website, but I can't find if you can create or delete a file.
Note that since early December 2012, you can create new files directly from GitHub:
ProTip™: You can pre-fill the filename field using just the URL.
Typing ?filename=yournewfile.txt at the end of the URL will pre-fill the filename field with the name yournewfile.txt.
Looks like it is not possible yet, sorry.
If you have good reasons, you can send a Feature Request here:
http://support.github.com/discussion/new
You can login to Cloud9 IDE and clone the repository and then create/delete as you like and then make a git push.