Git - Won't add files?

后端 未结 29 2141
小蘑菇
小蘑菇 2020-12-13 12:01

I\'m having issues where I can\'t add files to my repository.

I\'m using GIT on windows, in Aptana Studio for some Ruby development.

I\'ve managed to push a

29条回答
  •  庸人自扰
    2020-12-13 12:24

    How about the standard procedure:

    git add folder
    git commit
    

    This will add the folder and all it's files with a single command.
    Please note, git is not able to store empty folders.

    If commit didn't worked, the first place you should check is probably .gitignore.

提交回复
热议问题