How to Change Github Repository Language

Github Linguist It’s a library used on Github to detect repository languages. You can check it out here GitAttributes We’ll need a .gitattributes file in order to change the repo language. I’m using Windows, and it does not allow me to define a new file with name starting with a dot. If you are having such a case, you can type the following command from the command line: echo .> ....

February 6, 2017 · 1 min · Ahmet Gokdayi

How To Use Git Properly

Git Matters a Lot Dead simple, you don’t lose your files, you can track your progress, use milestones, open issues, review, etc. on Github. Github powers Git a lot. These are very important stuff. When I started using Git, I was committing big changes, then I realized that if possible, we gotta commit every time a file changes. I mean, if README.md changes, add a commit like this: git commit -m "change readme....

February 1, 2017 · 2 min · Ahmet Gokdayi