nlamirault / emacs-gitlab

A Gitlab client for Emacs
GNU General Public License v2.0
140 stars 30 forks source link

Support for creating repo/project on Gitlab #29

Open ghost opened 8 years ago

ghost commented 8 years ago

Please add feature to create Gitlab projects right from Emacs.

vindarel commented 7 years ago

I suppose something like magithub ? https://github.com/vermiculus/magithub/

drym3r commented 7 years ago

It's pretty easy to do this: curl -H "Content-Type:application/json" "https://gitlab.com/api/v3/projects?private_token=$secretToken" -d "{\"name\": \"test\", \"namespace_id\": \"$organizationId\"}" -v I guess it's won't be difficult to implement it on elisp.