gh_labels:
bug:
description: Bugfixes in codebase when something is not working.
colour: 'd73a4a'
feature:
description: New enhancements and features.
colour: '1B6659'
documentation:
description: Improvements or additions to docs.
colour: '0075ca'
release:
description: Indicates a new release.
colour: '108a51'
config:
description: Configuration and meta-infrastructural changes.
colour: '8ed92e'
refactor:
description: Code refactoring.
colour: 'D0EFCD'
question:
description: Further information requested.
colour: 'd876e3'
data:
description: Issues pertaining to data or data preparations.
colour: 'FAA631'
tests:
description: Issues related to tests.
colour: 'e4e669'
To untrack a single file that has already been added/initialized to your repository, i.e., stop tracking the file but not delete it from your system use: git rm --cached filename
To untrack every file that is now in your .gitignore:
First commit any outstanding code changes, and then, run this command:
$ git rm -r --cached .
This removes any changed files from the index(staging area), then just run:
$ git add .
Commit it:
$ git commit -m ".gitignore is now working"
*Note :- Be sure to merge your branches back to master or move your pointer otherwise you might lose your branch
/*
* select Clone or Download and Use SSH
* You will get a URL for the SSH protocol in the form git@github.com:<user>/<repo>.git
* Then run the following command in your working tree to tell Git to use this URL instead of the current one
*/
git remote set-url origin git@github.com:<user>/<repo>.git
Comments