-1

I am trying to upload a whole symfony project to gitlab. However I cannot do it from the website, because it only allows me to upload files one by one.

I was told by others to use stuff like "git add -A, git commit -m and git push origin symfony" in the command prompt, but it does not seem to be working.. I use windows 7

Vikz
  • 11
  • 1
  • 3
  • Yo dawg, you should try a Git tutorial. Lots of fine ones out there, e.g. https://try.github.io/ – Midgard May 24 '17 at 15:45

3 Answers3

0

Since you're using Windows, and Windows does not have native support for GIT, you could use some GIU app. Quick Google search pointed me to GitKraken, which is free and works with GitLab, according to their website. I have not tried it myself, though.

dmnptr
  • 4,258
  • 1
  • 20
  • 19
0

Install and open GitBash Then go to the project directory

cd c:\..\your_project\  
git init                      
git remote add origin 
git push -u origin master` 
helmis.m
  • 234
  • 1
  • 18
-1

Windows does not offer native support for git, it is advised to use a decent operating system such as Linux or Mac OSX for this. If you really need to use Windows, you can use a Git client such as Github desktop or SourceTree.

Pieter De Clercq
  • 1,951
  • 1
  • 17
  • 29