This I know but can't find an API to upload a whole folder containing various js, CSS and HTML files into gitlab repo.
Asked
Active
Viewed 1,999 times
2
-
did you get any? – Sanket Patel Nov 11 '19 at 12:25
-
@Gaurav Did u got any API's – Vishwanath.M Dec 31 '19 at 07:07
1 Answers
-3
Does this help? How do I add files and folders into GitHub repos?
git add <folder>/*
git commit -m "<Message>"
git push
I often use git add -A to add all modified files. But should use git status
before and after adding to make sure you see which files have been added before committing.

Justin Wilson
- 330
- 3
- 17
-
Sir, i am looking to this with API, not with this. Command line I know but i require API to do same exact work. – Gaurav Kumar Sep 06 '18 at 05:04