Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
donuts238486y@stop I was asking how since it doesn't provide it's own client.
GitHub, just add the folder to their app and click Publish -
tokumei21316yGitlab doesnt have a desktop UI or app like GitHub does; if you're not familiar with the command line version of git then I would highly recommend.
The basic process is (from git bash inside your project directory):
- Create an empty repository on GitLab
- Add a "remote" pointing to your preferred clone URL (https://gitlab.com/user/repo, or git@gitlab.com:user/repo)
- git push (remote name) master and whatever other branches -
donuts238486y@tokumei so have to create each repo on the site first? Can't just add a local repo and sorta say create a new remote repo for it and commit everything to it.
-
tokumei21316y@billgates If you have an existing repo locally and want to push it online, you have to go through that process, yes. You can copy a repo that is already online to your machine with git clone.
-
yabbat5436y@tokumei
git remote add origin <new-repo.git>
Followed by
git push -u origin master
Should create the remote repo without the need to create it manually on gitlab first
Related Rants
If I have existing code stored in a local folder/git repo. What is the easiest way to upload it into Gitlab?
I'm thinking of SourceTree for the upload.
GitHub is sorta my professional profile. I want one for the old, unused, and nsfw stuff.
question
gitlab