43

It really irritates me when people don't use gitignore and just push any shit.

Comments
  • 3
    @RemeJuan dunno about that, my rant was in reference to android project. This dude, just pushed everything. His commit has changes in 3300 files. Most of them unnecessary. Android Studio generates those files, no need to push them.
  • 0
    @RemeJuan I've decided to say this to them without coming of as an arrogant.
  • 0
    @anshulc95 I feel you friend. I used to be like that when I started using git until my seniors in my internship told me better.Now I hate the people who push build files for Android project.
  • 3
    dnt you share same .gitignore :D
  • 0
    @RemeJuan Node modules drive me nuts!!!
  • 1
    unfortunately I've done this a few times with bin directory stuff because i just don't see it and forget about it, thankfully my co-dev is pretty good at letting me know >.<
  • 1
    git add .
    (╯°□°)╯︵ ┻━┻
  • 0
    @anshulc95 Can you setup Android Studio to put its scruff some other place?
  • 1
    @Gauthier actually things are super easy, Android Studio even has a plugin for gitignore. But these guys started working without it and brought me in later. So that you know how ugly funny this is, their initial commit even has build binaries.
  • 0
    @trozan these two guys brought me in after working for a week like this.
  • 0
    I'm guilty of this. But partially because I've never seen a good tutorial on what to ignore. Help everyone and teach me master?
  • 0
    @GurpreetSK95 Gurpreet, I am no master, just Google what/how/why about gitignore, no need for tutorial, just read GitHub's documention on it.
  • 1
    @GurpreetSK95 Most basically: make sure anything that is generated is ignored.
  • 1
    People pushing build,bin and .idea folders.😬
  • 2
    touch .gitlgnore
    git add .gitlgnore

    Watch coworkers run in circles.
Add Comment